Skip to content

Demo

Demo #67

Workflow file for this run

name: ChatOps
on:
issue_comment:
types: [created]
jobs:
dispatch:
runs-on: ubuntu-latest
if: startsWith(github.event.comment.body, '/')
steps:
- name: /command dispatch
uses: peter-evans/slash-command-dispatch@v3
with:
token: ${{ secrets.SLASH_COMMAND_DISPATCH_TOKEN }}
config: >
[
{
"command": "tag",
"permission": "admin"
},
{
"command": "demo",
"permission": "none"
}
]