13 lines
301 B
YAML
13 lines
301 B
YAML
|
on: push
|
||
|
name: Slack Notification Demo
|
||
|
jobs:
|
||
|
slackNotification:
|
||
|
name: Slack Notification
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Slack Notification
|
||
|
uses: rtCamp/action-slack-notify@v2
|
||
|
env:
|
||
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|