Skip to content

Commit a4a1dbb

Browse files
authored
chore: send message to Slack on publish (#106)
1 parent 2cf1dcd commit a4a1dbb

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/release.yml

+25
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,28 @@ jobs:
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
67+
68+
- name: Send a Slack notification on publish
69+
if: steps.changesets.outcome == 'success' && steps.changesets.outputs.published == 'true'
70+
id: slack
71+
uses: slackapi/[email protected]
72+
with:
73+
# Slack channel id, channel name, or user id to post message
74+
# See also: https://api.slack.com/methods/chat.postMessage#channels
75+
# You can pass in multiple channels to post to by providing
76+
# a comma-delimited list of channel IDs
77+
channel-id: "C07K7QQ93FW"
78+
payload: |
79+
{
80+
"blocks": [
81+
{
82+
"type": "section",
83+
"text": {
84+
"type": "mrkdwn",
85+
"text": "A new version of `@apollo/graphql-testing-library` was released: <https://github.com/apollographql/graphql-testing-library/releases/tag/v${{ fromJson(steps.changesets.outputs.publishedPackages)[0].version }}|v${{ fromJson(steps.changesets.outputs.publishedPackages)[0].version }}> :rocket:"
86+
}
87+
}
88+
]
89+
}
90+
env:
91+
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}

0 commit comments

Comments
 (0)