mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
447 B
19 lines
447 B
3 years ago
|
name: "On Event : Issue Closed"
|
||
4 years ago
|
|
||
|
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
|
||
4 years ago
|
details: 'Closed : ${{ github.event.issue.title }}(#${{ github.event.issue.number }}) : ${{ github.event.issue.html_url }}'
|
||
3 years ago
|
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
|