Skip to content

Commit

Permalink
Introduce the workflow into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp committed Aug 28, 2023
1 parent 24b9a1f commit 01161a2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/rfc-propose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: RFC propose

on:
issue_comment:
types: [created]

jobs:
process:
name: Process Comment
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/rfc-propose ') }}
runs-on: ubuntu-latest
steps:
- uses: paritytech/rfc-propose@main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 01161a2

Please sign in to comment.