Skip to content

Test closing permissions #12

Test closing permissions

Test closing permissions #12

Workflow file for this run

name: RFC propose
on:
issue_comment:
types: [created]
jobs:
rfc-propose:
name: Propose an RFC creation transaction
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/rfc') }}
runs-on: ubuntu-latest
steps:
# https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow
- name: Generate a token
id: generate_token
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: paritytech/rfc-action@rzadp/fellowship-process-bot
env:
GH_TOKEN: ${{ steps.generate_token.outputs.token }}