Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0dc8a5b

Browse files
committedNov 27, 2020
Add Slack Integration For GH Action
Remove Travis CI
1 parent e46610d commit 0dc8a5b

File tree

2 files changed

+13
-25
lines changed

2 files changed

+13
-25
lines changed
 

‎.github/workflows/slack-notify.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: push
2+
name: Slack Notification
3+
jobs:
4+
slackNotification:
5+
name: Slack Notification
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: 8398a7/action-slack@v3
9+
with:
10+
status: ${{ job.status }}
11+
fields: repo,message,commit,author,action,eventName,ref,workflow
12+
env:
13+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

‎.travis.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.