We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963b920 commit a191427Copy full SHA for a191427
.github/workflows/release.yml
@@ -56,3 +56,19 @@ jobs:
56
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
57
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
58
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
59
+
60
+ slack-workflow-status:
61
+ if: always()
62
+ name: Post Workflow Status To Slack
63
+ needs: [ build ]
64
+ runs-on: ubuntu-latest
65
+ steps:
66
+ - name: Slack Workflow Notification
67
+ uses: Gamesight/slack-workflow-status@master
68
+ with:
69
+ # Required Input
70
+ repo_token: ${{secrets.GITHUB_TOKEN}}
71
+ slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}}
72
+ # Optional Input
73
+ name: 'Github Actions[bot]'
74
+ icon_url: 'https://octodex.github.com/images/mona-the-rivetertocat.png'
0 commit comments