Review PR #510
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 PR | |
on: | |
workflow_run: | |
workflows: | |
- Review-Trigger | |
types: | |
- completed | |
jobs: | |
review-approvals: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract content of artifact | |
id: number | |
uses: Bullrich/extract-text-from-artifact@main | |
with: | |
artifact-name: pr_number | |
- name: Generate token | |
id: team_token | |
uses: actions/create-github-app-token@v1.9.3 | |
with: | |
app-id: ${{ secrets.REVIEW_APP_ID }} | |
private-key: ${{ secrets.REVIEW_APP_KEY }} | |
# !This must always point to main. | |
# Change it for the PRs but remember to change it back | |
- name: "Evaluates PR reviews and assigns reviewers" | |
uses: paritytech/review-bot@main | |
with: | |
repo-token: ${{ steps.team_token.outputs.token }} | |
team-token: ${{ steps.team_token.outputs.token }} | |
checks-token: ${{ steps.team_token.outputs.token }} | |
pr-number: ${{ steps.number.outputs.content }} | |
request-reviewers: true |