It is not possible to create two continuous pull requests #2489
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
with: | |
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | |
config: > | |
[ | |
{ | |
"command": "test", | |
"permission": "admin", | |
"repository": "peter-evans/create-pull-request-tests", | |
"named_args": true | |
}, | |
{ | |
"command": "testv5", | |
"permission": "admin", | |
"repository": "peter-evans/create-pull-request-tests", | |
"named_args": true | |
}, | |
{ | |
"command": "clean", | |
"permission": "admin", | |
"repository": "peter-evans/create-pull-request-tests" | |
}, | |
{ | |
"command": "cpr-example", | |
"permission": "admin", | |
"issue_type": "issue" | |
}, | |
{ | |
"command": "rebase", | |
"permission": "admin", | |
"repository": "peter-evans/slash-command-dispatch-processor", | |
"issue_type": "pull-request" | |
} | |
] |