Skip to content

Commit

Permalink
Create updates.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seized0 authored Sep 16, 2024
1 parent 935100d commit bb4597d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Send Webhook on Update

on:
push:
branches:
- main

jobs:
send-webhook:
runs-on: Windows 7/8/10/11

steps:
- name: Send message to webhook
uses: actions/http-client@v1
with:
url: 'https://discord.com/api/webhooks/1285283849986637896/fL9XaMhTWy5gJA_FmLq0ZG35wPum-2Y-1nPRWbtbFkUc8uMMsmlZqtHWG6LQ8dEx2mDr'
method: 'POST'
headers: |
Content-Type: application/json
body: |
{
"content": "Nouvelle update",
"branch": "${{ github.ref }}",
"committer": "${{ github.actor }}"
}

0 comments on commit bb4597d

Please sign in to comment.