.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
17 lines
466 B
YAML
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
|