Files
nocodb/.github/workflows/on-event-issue-closed.yml
Pranav C 2b27620d81 chore: Update runner os to ubuntu-22.04 (#10400)
* chore: update runner os to ubuntu-22.04

Signed-off-by: Pranav C <pranavxc@gmail.com>

* docs: formatting

Signed-off-by: Pranav C <pranavxc@gmail.com>

---------

Signed-off-by: Pranav C <pranavxc@gmail.com>
2025-02-04 11:45:59 +03:00

19 lines
446 B
YAML

name: "On Event : Issue Closed"
on:
issues:
types: [closed]
jobs:
notify:
name: 'Discord'
runs-on: ubuntu-22.04
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 }}