You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any of those events can be used with the "run_when" json var, allowing you to use a single build.json for all your workflows.
52
+
Any of those events can be used with the `"run_when_..."` json varr, allowing you to use a single build.json for all your workflows. See [the ebbs docs](https://github.com/eons-dev/bin_ebbs) for more info
53
+
54
+
For example:
55
+
```json
56
+
{
57
+
"run_when_any": [
58
+
"pull_request"
59
+
]
60
+
}
61
+
```
47
62
48
63
If you would like additional environment variables, cli args, build steps, etc, you can always clone this repo or modify the subrepo clone to your liking.
64
+
65
+
### Scheduled Workflows
66
+
67
+
The following scheduled events triggers are also available:
68
+
*`"daily"` (runs at 0000 UTC)
69
+
*`"weekly"` (runs at 0100 UTC)
70
+
*`"monthly"` (runs at 0200 UTC)
71
+
72
+
Each scheduled trigger is set to run 1 hour after the preceding frequencies trigger so that any conflicting behavior can be executed with an order of known precedence. If your ebbs execution takes longer than 1 hour, let us know and we can multiply the offset.
0 commit comments