Mirror von
https://github.com/TheSilentPro/HeadDB.git
synchronisiert 2024-12-27 11:20:05 +01:00
26 Zeilen
547 B
YAML
26 Zeilen
547 B
YAML
name: Discord Webhook
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
report-status:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Java JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'adopt'
|
|
java-version: '17'
|
|
java-package: jdk
|
|
architecture: x64
|
|
- name: Dispatch Discord Webhook
|
|
uses: baked-libs/discord-webhook@1.5.1
|
|
with:
|
|
id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|