Updates usages of CustomItemStack (#4253) #2814
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 21 | |
uses: actions/setup-java@v4.0.0 | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
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 }} |