Files
jim-payments/.github/workflows/notify-discord.yml
2025-07-27 18:48:55 +01:00

17 lines
389 B
YAML

name: Discord Commit Notifier
on:
push:
branches:
- '*' # triggers on all branches
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send commit payload to Discord Bot
run: |
curl -X POST http://${{ secrets.DISCORDBOT }}:3000/github-commits \
-H "Content-Type: application/json" \
-d '${{ toJson(github.event) }}'