Super chest containers automatically sets an output on the back side of the block every time you join your singleplayer world #670
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
| # Manages labels on new issues | |
| name: Issue Labels | |
| on: | |
| issues: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| labels: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: '1.20.1' | |
| sparse-checkout: '.github/labeler.yml' | |
| - uses: github/issue-labeler@v3.3 | |
| with: | |
| configuration-path: .github/labeler.yml | |
| enable-versioned-regex: 0 |