[Bug]: Data Router is poorly documented in manual #34
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: Issue Closed | |
on: | |
issues: | |
types: [ closed ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo 'ISSUE ID: ${{ github.event.issue.id }}' | |
echo 'PROJECT ITEM ID: ${{ github.event.issue.number }}' | |
- name: Notify Internal Discord | |
uses: sebastianpopp/discord-action@releases/v2 | |
with: | |
webhook: ${{ secrets.WH_TASK_COMPLETE_PRIVATE }} | |
message: "Task [${{ github.event.issue.title }}](<https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }}>) has been marked as completed." | |
- name: Notify Public Discord | |
uses: sebastianpopp/discord-action@releases/v2 | |
with: | |
webhook: ${{ secrets.WH_TASK_COMPLETE_PUBLIC }} | |
message: "Task [${{ github.event.issue.title }}](<https://github.com/${{ github.repository }}/issues/${{ github.event.issue.number }}>) has been marked as completed." |