Add 'kind/level-change' label for project maturity transitions #39
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: Validate Label Schema | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/labels.yaml | |
| - .github/ISSUE_TEMPLATE/** | |
| - scripts/validate-label-schema.py | |
| - .github/workflows/validate-label-schema.yml | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/labels.yaml | |
| - .github/ISSUE_TEMPLATE/** | |
| - scripts/validate-label-schema.py | |
| - .github/workflows/validate-label-schema.yml | |
| jobs: | |
| validate-label-schema: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Validate issue template labels against labels.yaml | |
| run: python3 scripts/validate-label-schema.py |