Set and store prerelease during category data generation #940
Workflow file for this run
This file contains 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: "Check Pull Request labels" | |
on: | |
pull_request: | |
types: | |
- labeled | |
- opened | |
- synchronize | |
- unlabeled | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
check_labels: | |
name: "Check Pull Request labels" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.7 | |
- name: Check the labels | |
uses: ludeeus/action-require-labels@1.1.0 | |
with: | |
labels: >- | |
Breaking Change, Experimental, pr: new-feature, | |
pr: enhancement, pr: refactor, pr: bugfix, | |
pr: dependency-update, pr: action, pr: test, | |
pr: repository |