Building Bazel@HEAD results in many Java-related warnings #21256
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
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@6b3083af2869dc3314a0257a42f4af696cc79ba3 # v2.3.1 | |
with: | |
egress-policy: audit | |
- name: Run helper | |
uses: bazelbuild/continuous-integration/actions/release-helper@70ab2cc80222b90afde06fa0b3b7c067239777b4 # master | |
with: | |
token: ${{ secrets.BAZEL_IO_TOKEN }} |