@bazel_tool//tools/cpp:link_extra_libs
should not propagate to exec config
#30087
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@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Run helper | |
uses: bazelbuild/continuous-integration/actions/release-helper@35fc1da116a96631f83b45217ceb84e6ccee0106 # master | |
with: | |
token: ${{ secrets.BAZEL_IO_TOKEN }} |