Skip to content

Commit d9741c0

Browse files
author
Marcin Brański
committed
Added chatops
1 parent bfd0eb9 commit d9741c0

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/slash-command-dispatch.yml renamed to .github/workflows/chatops.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
name: Slash Command Dispatch
1+
name: chatops
22
on:
33
issue_comment:
44
types: [created]
55

66
jobs:
7-
slashCommandDispatch:
7+
default:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11-
12-
- name: Slash Command Dispatch
11+
- name: "Handle common commands"
1312
uses: cloudposse/actions/github/slash-command-dispatch@0.15.0
1413
with:
1514
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
@@ -19,7 +18,12 @@ jobs:
1918
permission: none
2019
issue-type: pull-request
2120

22-
- name: Run tests
21+
test:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: "Checkout commit"
25+
uses: actions/checkout@v2
26+
- name: "Run tests"
2327
uses: cloudposse/actions/github/slash-command-dispatch@0.15.0
2428
with:
2529
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)