Workflows to notify the team about github issues #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Workflows to notify the team about github issues | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
message: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Send a stream message | |
uses: zulip/github-actions-zulip/send-message@e4c8f27c732ba9bd98ac6be0583096dea82feea5 | |
env: | |
CONTENT: "I have detected a new issue on ${{ github.event.repo.name }}.\nLink: ${{ github.event.issue.html_url }}\nThis is an automatically relayed message. Don't reply to me directly.\n-- Issue description:\n${{ github.event.issue.body }}" | |
with: | |
api-key: ${{ secrets.ZULIP_BOT_SECRET }} | |
email: '[email protected]' | |
organization-url: 'https://kie.zulipchat.com' | |
to: 'kogito' | |
type: 'stream' | |
topic: 'GitHub Issues - ${{ github.event.issue.title }}' | |
content: ${{ env.CONTENT }} |