Incremental build doesn't work if cc_library headers were changed (on Macos only) #35264
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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Run helper | |
uses: bazelbuild/continuous-integration/actions/release-helper@312ab25f6994b2fac89dc6910b3ebd6cb93cfa74 # master | |
with: | |
token: ${{ secrets.BAZEL_IO_TOKEN }} |