Skip to content

Commit

Permalink
chore: Send google chat notification for a release (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone authored Aug 28, 2023
1 parent be6ac72 commit 0c85881
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,15 @@ jobs:
curl -f -u "${JENKINS_BASIC_AUTH_USER}:${JENKINS_BASIC_AUTH_PASS}" \
-X POST "${JENKINS_DEV_WEBHOOK}" \
-d "Service=ingest&Version=${IMAGE_TAG}"
send-chat-notification:
name: Send google chat notification
needs: [publish-docker-image]
runs-on: ubuntu-latest
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
steps:
- name: Send notification to google chat room "DSP releases"
uses: lakto/google-chat-action@main
with:
url: ${{ secrets.GOOGLE_CHAT_DSP_RELEASES_WEBHOOK_URL }}

0 comments on commit 0c85881

Please sign in to comment.