We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd8e2b3 commit 9b2355fCopy full SHA for 9b2355f
1 file changed
.github/workflows/build-release.yaml
@@ -91,3 +91,17 @@ jobs:
91
password: ${{ secrets.PYPI_API_TOKEN }}
92
packages_dir: dist/${{ matrix.component }}
93
verbose: true
94
+ slack-notification:
95
+ strategy:
96
+ matrix:
97
+ channels: [ "#releases" ]
98
+ runs-on: ubuntu-latest
99
+ needs: publish
100
+ steps:
101
+ - name: Notify to slack
102
+ uses: slackapi/slack-github-action@v1.25.0
103
+ with:
104
+ channel-id: ${{ matrix.channels }}
105
+ slack-message: "The release of *gooddata-python-sdk@${{ github.ref_name }}*, has been successful. :tada:"
106
+ env:
107
+ SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
0 commit comments