diff --git a/.github/workflows/slack-notify.yml b/.github/workflows/slack-notify.yml new file mode 100644 index 0000000..0994c99 --- /dev/null +++ b/.github/workflows/slack-notify.yml @@ -0,0 +1,17 @@ +# Slack Notify + +on: push +name: Slack Notification +jobs: + slackNotification: + name: Slack Notification + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Slack Notify + uses: rtCamp/action-slack-notify@v2.1.2 + env: + SLACK_CHANNEL: -sw + SLACK_USERNAME: LogGatherer-notify-bot + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}