[AAP-82119] Batch resource migration using bulk-update endpoint #366
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
| # Stub workflow that fires on pull_request_review events. | |
| # The PR Labels workflow chains off this via workflow_run so it gets | |
| # a write-capable GITHUB_TOKEN (pull_request_review tokens are | |
| # read-only for cross-fork PRs). | |
| name: PR Review Trigger | |
| on: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| noop: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - env: | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| run: 'echo "Review submitted on PR #${PR_NUMBER}"' |