This repository was archived by the owner on Aug 21, 2026. It is now read-only.
Merge pull request #699 from mimmi20/updates #205
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
| # https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
| # file-version: 1.0 | |
| name: "Sync labels in the declarative way" | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| paths: | |
| - ".github/labels.yml" | |
| - ".github/workflows/labels.yml" | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| build: | |
| name: "Sync labels" | |
| uses: "mimmi20/ci/.github/workflows/sync-labels.yml@8.3" | |
| with: | |
| repository: ${{ github.repository }} | |
| manifest: ".github/labels.yml" | |
| # This is a meta job to avoid to have to constantly change the protection rules | |
| # whenever we touch the matrix. | |
| label-status: | |
| name: "Sync Label Status" | |
| runs-on: "ubuntu-latest" | |
| if: always() | |
| needs: | |
| - "build" | |
| steps: | |
| - name: Failing run | |
| if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') }} | |
| run: exit 1 | |
| - name: Successful run | |
| if: ${{ !(contains(needs.*.result, 'failure')) && !(contains(needs.*.result, 'skipped')) && !(contains(needs.*.result, 'cancelled')) }} | |
| run: exit 0 |