Skip to content

Commit

Permalink
ARC-1714: Provide GitHub Action to notify new issues (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelealbanese-oviva committed May 29, 2024
1 parent 6813e3f commit bf85e5e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/notify-github-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Send Google Chat notification when an issue is opened

on:
issues:
types: [opened, reopened]

jobs:
notify-google-chat:
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- id: 'notify_google_chat'
uses: 'google-github-actions/[email protected]'
with:
webhook_url: '${{ secrets.GOOGLE_CHAT_GAIA_SUPPORT_CHANNEL }}'
mention: "<users/all>"

0 comments on commit bf85e5e

Please sign in to comment.