mirror of
https://github.com/pezkuwichain/pezkuwi-fellows.git
synced 2026-04-25 11:37:57 +00:00
74c204191f
Fixes an issue with inadvertent move to LFS (was supposed to be a diff change only).
25 lines
694 B
YAML
25 lines
694 B
YAML
name: RFC action
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
permissions: write-all
|
|
|
|
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
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Generate a token
|
|
id: generate_token
|
|
uses: actions/create-github-app-token@v1.8.1
|
|
with:
|
|
app-id: ${{ secrets.RFC_BOT_APP_ID }}
|
|
private-key: ${{ secrets.RFC_BOT_PRIVATE_KEY }}
|
|
- uses: paritytech/rfc-action@2fd06c94cc98b4f66f37a35f25d6a69515e4d49f # v0.1.1
|
|
env:
|
|
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
|