Skip to content

Commit

Permalink
slack-notify
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolina committed May 31, 2024
1 parent 6106794 commit 3bc2ef3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/slack-notify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Docker
on: [workflow_dispatch]

jobs:
notify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Send a slack message
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.DOTCMS_SLACK_WEBHOOK }}
SLACK_CHANNEL: '#scout_equipo'
SLACK_TITLE: "Important news!"
SLACK_MESSAGE: "⚽️ This is a custom message from GitHub Actions"
SLACK_COLOR: "#723fc4"
SLACK_ICON_EMOJI: ':rocket:'
SLACK_USERNAME: dotBot
SLACK_MSG_AUTHOR: " "
MSG_MINIMAL: true
SLACK_FOOTER: ""

0 comments on commit 3bc2ef3

Please sign in to comment.