mirror of
https://github.com/pezkuwichain/pezkuwi-fellows.git
synced 2026-04-25 17:27:57 +00:00
20 lines
449 B
YAML
20 lines
449 B
YAML
name: RFC action
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
jobs:
|
|
rfc-action:
|
|
name: Handle an RFC-related command
|
|
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/rfc') }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: paritytech/rfc-action@be7c934ade5bfce5eae889db3d6a286560431333 # v0.0.3
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|