@@ -2,25 +2,25 @@ name: "gha: macOS & Windows"
22
33# Build on pull requests and pushes to `main`. The PR builds will be
44# non-blocking for now, but that is configured elsewhere.
5- on :
6- # Start these builds on pushes (think "after the merge") too. Normally there
7- # are no `ci-gha**` branches in our repository. The contributors to the repo
8- # can create such branches when testing or troubleshooting builds. In such
9- # branches we can disable builds (to speed up the testing) or add new ones,
10- # without impacting the rest of the team.
11- push :
12- branches : [ 'v[2-9]**', 'ci-gha**', 'prepare-for-v3.0.0' ]
13- # Start the build in the context of the target branch. This is considered
14- # "safe", as the workflow files are already committed. These types of builds
15- # have access to the secrets in the build, which we need to use the remote
16- # caches (Bazel and sccache).
17- pull_request_target :
18- types :
19- - opened
20- - synchronize
21- - reopened
22- schedule :
23- - cron : ' 0 5 * * 1,2,3,4,5'
5+ # on:
6+ # # Start these builds on pushes (think "after the merge") too. Normally there
7+ # # are no `ci-gha**` branches in our repository. The contributors to the repo
8+ # # can create such branches when testing or troubleshooting builds. In such
9+ # # branches we can disable builds (to speed up the testing) or add new ones,
10+ # # without impacting the rest of the team.
11+ # push:
12+ # branches: [ 'v[2-9]**', 'ci-gha**', 'prepare-for-v3.0.0' ]
13+ # # Start the build in the context of the target branch. This is considered
14+ # # "safe", as the workflow files are already committed. These types of builds
15+ # # have access to the secrets in the build, which we need to use the remote
16+ # # caches (Bazel and sccache).
17+ # pull_request_target:
18+ # types:
19+ # - opened
20+ # - synchronize
21+ # - reopened
22+ # schedule:
23+ # - cron: '0 5 * * 1,2,3,4,5'
2424
2525# Cancel in-progress runs of the workflow if somebody adds a new commit to the
2626# PR or branch. That reduces billing, but it creates more noise about cancelled
0 commit comments