9.1.0rc1 adds new platform properties breaking remote execution #49503
This file contains hidden or 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
| name: release-helper | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| permissions: | |
| contents: read | |
| jobs: | |
| release-helper: | |
| if: startsWith(github.event.comment.body, '@bazel-io ') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1 | |
| with: | |
| egress-policy: audit | |
| - name: Run helper | |
| uses: bazelbuild/continuous-integration/actions/release-helper@ac7892b9d7010988b3ecb53656812ce9a5da77af # master | |
| with: | |
| token: ${{ secrets.BAZEL_IO_TOKEN }} |