| 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@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 |
| with: |
| egress-policy: audit |
| |
| - name: Run helper |
| uses: bazelbuild/continuous-integration/actions/release-helper@3021432ab2403d7a660229d3ef4e1cf5c0e5c64c # master |
| with: |
| token: ${{ secrets.BAZEL_IO_TOKEN }} |