Feature/matb/fix floor selector expansion on small screens #769
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: "Pull Request Label Checker" | |
| # Run the workflow when a Pull Request targeting the main branch is opened with or without labels, or reopened. | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| check_labels: | |
| name: "Check Pull Requst Labels" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: mheap/github-action-required-labels@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # This workflow fails if there is not exactly one label of the ones listed here (both zero and multiple will cause a failure). | |
| with: | |
| mode: exactly | |
| count: 1 | |
| labels: "major, minor, patch" |