playtest, fix confirmations, and move tutoring fixed #29
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: Labels | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled] | |
| jobs: | |
| label: | |
| if: github.actor != 'allcontributors[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: check labels | |
| uses: mheap/github-action-required-labels@v5 | |
| with: | |
| mode: minimum | |
| count: 1 | |
| labels: | | |
| General | |
| General Merge | |
| category: ability | |
| category: battle-ai | |
| category: battle-mechanic | |
| category: battle-tests | |
| category: items | |
| category: move animation | |
| category: move effect | |
| category: overworld | |
| category: pokemon | |
| category: sprite-issue | |
| type: documentation | |
| allcontributors: | |
| if: github.actor == 'allcontributors[bot]' | |
| runs-on: ubuntu-latest | |
| needs: [] | |
| steps: | |
| - name: Automatically pass for allcontributors | |
| run: echo "CI automatically passes for allcontributors" && exit 0 | |