Plant Balls take 1 Sapling, while all other recipes for them take 8 pieces of plant matter #608
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 |