[bazel] Fix build after 0e35f56d40d3b4fe44fd69066ba94f54cb9b844a #56509
Workflow file for this run
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: "Add buildbot information to first PRs from new contributors" | |
| permissions: | |
| contents: read | |
| on: | |
| # It's safe to use pull_request_target here, because we aren't checking out | |
| # code from the pull request branch. | |
| # See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
| pull_request_target: | |
| types: | |
| - closed | |
| jobs: | |
| buildbot_comment: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| pull-requests: write | |
| if: >- | |
| (github.repository == 'llvm/llvm-project') && | |
| (github.event.pull_request.merged == true) | |
| steps: | |
| - name: Checkout Automation Script | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| sparse-checkout: llvm/utils/git/ | |
| ref: main | |
| - name: Setup Automation Script | |
| working-directory: ./llvm/utils/git/ | |
| run: | | |
| pip install --require-hashes -r requirements.txt | |
| - name: Add Buildbot information comment | |
| working-directory: ./llvm/utils/git/ | |
| run: | | |
| python3 ./github-automation.py \ | |
| --token '${{ secrets.GITHUB_TOKEN }}' \ | |
| pr-buildbot-information \ | |
| --issue-number "${{ github.event.pull_request.number }}" \ | |
| --author "${{ github.event.pull_request.user.login }}" |