1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00
Slimefun4/.github/workflows/discord-webhook.yml
2024-01-18 15:06:33 +01:00

46 lines
969 B
YAML

name: Discord Webhook
on:
push:
paths:
- 'src/**'
- '!src/main/resources/languages/**'
- 'pom.xml'
permissions:
contents: read
jobs:
report:
name: Discord Webhook
runs-on: ubuntu-latest
## Only run this on the main repo
if: github.repository == 'Slimefun/Slimefun4'
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
- name: Set up Java JDK 17
uses: actions/setup-java@v4.0.0
with:
distribution: 'adopt'
java-version: '17'
java-package: jdk
architecture: x64
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run Discord Webhook
uses: baked-libs/discord-webhook@1.5.1
with:
id: ${{ secrets.DISCORD_WEBHOOK_ID }}
token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}