create-pull-request/.github/workflows/slash-command-dispatch.yml

17 lines
474 B
YAML
Raw Normal View History

2019-12-03 11:50:15 +01:00
name: Slash Command Dispatch
on:
issue_comment:
types: [created]
jobs:
slashCommandDispatch:
runs-on: ubuntu-latest
steps:
- name: Slash Command Dispatch
uses: peter-evans/slash-command-dispatch@v1
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
reaction-token: ${{ secrets.GITHUB_TOKEN }}
2019-12-30 06:18:41 +01:00
commands: test, pytest, clean
2019-12-03 11:50:15 +01:00
permission: admin
repository: peter-evans/create-pull-request-tests