Files
.github
workflows
create-pull-request-multi.yml
create-pull-request.yml
dockerhub-description.yml
slash-command-dispatch.yml
CODEOWNERS
assets
dist
src
.gitignore
LICENSE
README.md
action.yml
examples.md
index.js
package-lock.json
package.json
renovate.json
create-pull-request/.github/workflows/slash-command-dispatch.yml
2019-12-08 15:36:00 +09:00

17 lines
466 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, clean
permission: admin
repository: peter-evans/create-pull-request-tests