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 6f24026 commit 58d7c0eCopy full SHA for 58d7c0e
.github/workflows/rfc-action.yml
@@ -12,6 +12,12 @@ jobs:
12
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/rfc') }}
13
runs-on: ubuntu-latest
14
steps:
15
+ - name: Generate a token
16
+ id: generate_token
17
+ uses: actions/create-github-app-token@v1
18
+ with:
19
+ app_id: ${{ secrets.RFC_BOT_APP_ID }}
20
+ private_key: ${{ secrets.RFC_BOT_PRIVATE_KEY }}
21
- uses: paritytech/rfc-action@c8b00e2264712a7093a5b64c6ffd2298b49d41cf # v0.0.4
- env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ env:
23
+ GH_TOKEN: ${{ steps.generate_token.outputs.token }}
0 commit comments