Review BCR Pull Requests #16462
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: Review BCR Pull Requests | |
on: | |
schedule: | |
- cron: "*/10 * * * *" # Run this action every 10 mins | |
workflow_dispatch: # So that this can be triggered manually | |
jobs: | |
review_prs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
if: github.repository_owner == 'bazelbuild' | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- name: Run BCR PR Reviewer | |
if: github.repository_owner == 'bazelbuild' | |
uses: bazelbuild/continuous-integration/actions/bcr-pr-reviewer@2997e589af56c74eeccaf79640f20a6b40e1b0b6 # master | |
with: | |
# This token needs to be updated annually on Feb 05. | |
token: ${{ secrets.BCR_PR_REVIEW_HELPER_TOKEN }} | |
action-type: review_prs |