test: end-to-end triage pipeline (please ignore) #8
This file contains hidden or 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
| # Meldet neue Issues, Issue-Kommentare und PRs in den SkyTechNerds-Discord | |
| # (Hermes-Work-Commons-Action). Braucht das Repo-Secret DISCORD_WEBHOOK_URL. | |
| # Prefix COMMUNITY = reine Benachrichtigung, der Hermes-Bot startet keine Tests. | |
| name: Notify Community Activity | |
| "on": | |
| issues: | |
| types: [opened] | |
| issue_comment: | |
| types: [created] | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: SkyTechNerds/hermes-work-commons@v5 | |
| with: | |
| discord_webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
| trigger_prefix: 'COMMUNITY' |