17 lines
459 B
YAML
17 lines
459 B
YAML
|
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 }}
|
||
|
commands: test
|
||
|
permission: admin
|
||
|
repository: peter-evans/create-pull-request-tests
|