Skip to content

Update main screenshot for the new goals & projects UI #20

Update main screenshot for the new goals & projects UI

Update main screenshot for the new goals & projects UI #20

name: Discord Notification for Issues
on:
issues:
types: [opened, closed]
jobs:
notify_discord:
runs-on: ubuntu-latest
steps:
- name: Send Discord Notification
uses: appleboy/discord-action@master
with:
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
color: "#48f442"
username: "GitHub"
message: |
${{ format('{0}', github.event.action == 'opened' && 'New issue opened:' || 'Issue closed:') }}
**Title:** ${{ github.event.issue.title }}
**URL:** ${{ github.event.issue.html_url }}
**User:** ${{ github.event.issue.user.login }}
${{ github.event.issue.body }}