Skip to content

Commit

Permalink
First attempt at notifying Zulip of deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
jerodsanto committed Oct 16, 2024
1 parent 24d8609 commit 51ce738
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dagger_on_namespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,15 @@ jobs:
SLACK_USERNAME: "GitHub Actions"
SLACK_FOOTER: "Just got shipped to https://changelog.com"
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

- name: "Announce deploy in #kaizen Zulip..."
if: ${{ github.repository == 'thechangelog/changelog.com' && github.ref_name == 'master' }}
uses: zulip/github-actions-zulip/send-message@v1
with:
api-key: ${{ secrets.ZULIP_BOT_API_KEY }}
email: "[email protected]"
organization-url: "https://changelog.zulipchat.com"
to: "kaizen"
type: "stream"
topic: "Code deploys"
content: "${{ github.actor }} just successfully deployed [${{ github.sha }}](https://github.com/thechangelog/changelog.com/commit/${{ github.sha }})"

0 comments on commit 51ce738

Please sign in to comment.