Skip to content

Commit

Permalink
Add slash command
Browse files Browse the repository at this point in the history
  • Loading branch information
Akrog committed Apr 21, 2020
1 parent ff309e2 commit 11a70dc
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/command-dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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.EMBERIO_ACCESS_TOKEN }}
commands: help, build
repository: embercsi/3rd-party-ci
issue-type: pull-request
reactions: false
# permission: write
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Byte-compiled / optimized / DLL files
.*
!.gitignore
!.github/
!.travis.yml
.*.sw?
__pycache__/
Expand Down
1 change: 1 addition & 0 deletions hooks/build
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash
set -e
set -x

EMBER_VERSION=`git describe --tags`

Expand Down
1 change: 1 addition & 0 deletions hooks/push
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash
set -e
set -x

# Push ember-csi master branches
if [ "$SOURCE_BRANCH" == "master" ]
Expand Down

0 comments on commit 11a70dc

Please sign in to comment.