Skip to content

remove misc so bagel on mcia can stop slandering us #760

remove misc so bagel on mcia can stop slandering us

remove misc so bagel on mcia can stop slandering us #760

Workflow file for this run

# This workflow applies licenses and commits changes
# to the repository.
name: license
on:
push:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [21] # Current Java LTS & minimum supported by Minecraft
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checking Out the Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validating the Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setting up Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
java-package: jdk
- name: Setting Up the Gradle Wrapper
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Caching Dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-#{{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Apply Licenses
run: ./gradlew applyLicenses -PreleaseType=stable -PuseThirdPartyMods=false
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v4