-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
internal/ci: rerun trybot workflows post eviction
We currently rely on a scheduled run of the trybot workflow to repopulate the actions caches post eviction. This works for the default branch, against which the scheduled trybot run will happen. However it does not work for other protected branches, e.g. those branches that match release-branch.* Therefore, write a bit of shell that reruns the latest trybot workflow for each branch that matches the protected branch patterns. Tested by pushing manually to ci/test prior to this CL. Signed-off-by: Paul Jolly <paul@myitcv.io> Change-Id: I2e38b5665d0a41be9876f71511af2f9b588ed696 Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/551256 TryBot-Result: CUEcueckoo <cueckoo@cuelang.org> Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
- Loading branch information
Showing
5 changed files
with
69 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,6 @@ name: TryBot | |
tags-ignore: | ||
- v* | ||
pull_request: {} | ||
schedule: | ||
- cron: 15 2 * * * | ||
jobs: | ||
test: | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters