We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e40a8ed commit 9790931Copy full SHA for 9790931
.github/workflows/review.yml
@@ -13,9 +13,15 @@ jobs:
13
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
14
15
steps:
16
+ - name: Generate a token
17
+ id: generate-token
18
+ uses: actions/create-github-app-token@v2
19
+ with:
20
+ app-id: ${{ secrets.REQUIRED_REVIEWS_APP_ID }}
21
+ private-key: ${{ secrets.REQUIRED_REVIEWS_APP_KEY }}
22
- uses: Automattic/[email protected]
23
with:
- token: ${{ secrets.REQUIRED_REVIEWS_TOKEN }}
24
+ token: ${{ steps.generate-token.outputs.token }}
25
status: Required Reviews
26
requirements: |
27
- name: Cloud provider files
0 commit comments