mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-02 22:18:56 -07:00
17 lines
383 B
YAML
17 lines
383 B
YAML
name: Discord webhook
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
webhook:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: 'Checkout code'
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Send webhook
|
|
env:
|
|
DEV_DISCORD_WEBHOOK: "https://discord.com/api/webhooks/${{ secrets.DEV_WEBHOOK_ID }}/${{ secrets.DEV_WEBHOOK_TOKEN }}"
|
|
run: python .github/workflow_data/discord_push.py
|