Files
nocodb/.github/workflows/on-event-issue-closed.yml
Pranav C cc5e0df538 chore(actions): Modify action names
Signed-off-by: Pranav C <pranavxc@gmail.com>
2021-08-21 12:58:09 +05:30

19 lines
447 B
YAML

name: "On Event : Issue Closed"
on:
issues:
types: [closed]
jobs:
notify:
name: 'Discord'
runs-on: ubuntu-latest
steps:
- name: Discord notify
uses: rjstone/discord-webhook-notify@v1
with:
severity: info
details: 'Closed : ${{ github.event.issue.title }}(#${{ github.event.issue.number }}) : ${{ github.event.issue.html_url }}'
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}