Review Bot #76517
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: Review Bot | |
| on: | |
| workflow_run: | |
| workflows: | |
| - Review-Trigger | |
| types: | |
| - completed | |
| workflow_dispatch: | |
| inputs: | |
| pr-number: | |
| description: "Number of the PR to evaluate" | |
| required: true | |
| type: number | |
| jobs: | |
| review-approvals: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate token | |
| id: app_token | |
| uses: actions/[email protected] | |
| with: | |
| app-id: ${{ secrets.REVIEW_APP_ID }} | |
| private-key: ${{ secrets.REVIEW_APP_KEY }} | |
| - name: Extract content of artifact | |
| if: ${{ !inputs.pr-number }} | |
| id: number | |
| uses: Bullrich/[email protected] | |
| with: | |
| artifact-name: pr_number | |
| - name: "Evaluates PR reviews and assigns reviewers" | |
| uses: paritytech/[email protected] | |
| with: | |
| repo-token: ${{ steps.app_token.outputs.token }} | |
| team-token: ${{ steps.app_token.outputs.token }} | |
| checks-token: ${{ steps.app_token.outputs.token }} | |
| # This is extracted from the triggering event | |
| pr-number: ${{ inputs.pr-number || steps.number.outputs.content }} | |
| request-reviewers: true | |
| - name: Log payload | |
| if: ${{ failure() || runner.debug }} | |
| run: echo "::debug::$payload" | |
| env: | |
| payload: ${{ toJson(github.event) }} |