We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94202a9 commit 3e39cc3Copy full SHA for 3e39cc3
1 file changed
.github/workflows/build.yml
@@ -61,3 +61,20 @@ jobs:
61
env:
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
63
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
64
+
65
+ slack-workflow-status:
66
+ if: always()
67
+ name: Post Workflow Status To Slack
68
+ needs: [ build ]
69
+ runs-on: ubuntu-latest
70
+ steps:
71
+ - name: Slack Workflow Notification
72
+ uses: Gamesight/slack-workflow-status@master
73
+ with:
74
+ # Required Input
75
+ repo_token: ${{secrets.GITHUB_TOKEN}}
76
+ slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}}
77
+ # Optional Input
78
+ name: 'Github Actions[bot]'
79
+ icon_url: 'https://octodex.github.com/images/mona-the-rivetertocat.png'
80
0 commit comments