Add option for ender chests and shulkerboxes to be opened when blocked #1923
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - "ver/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.commits[0].message, '[ci-skip]')" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| cache: 'gradle' | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - name: Configure Git | |
| run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions" | |
| - name: Apply Patches | |
| run: ./gradlew applyAllPatches --stacktrace | |
| - name: Build | |
| run: ./gradlew build --stacktrace | |
| - name: Rebuild on Failure | |
| if: ${{ failure() }} | |
| run: | | |
| ./gradlew clean cleanCache --refresh-dependencies | |
| ./gradlew applyAllPatches --stacktrace | |
| ./gradlew build --stacktrace |