cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
.github/workflows/sync-labels.yml
18lines · modecode
| 1 | name: Sync labels |
| 2 | on: |
| 3 | workflow_dispatch: |
| 4 | push: |
| 5 | branches: |
| 6 | - master |
| 7 | paths: |
| 8 | - .github/labels.yml |
| 9 | jobs: |
| 10 | build: |
| 11 | runs-on: ubuntu-latest |
| 12 | steps: |
| 13 | - uses: actions/checkout@v2 |
| 14 | - uses: micnncim/action-label-syncer@v1 |
| 15 | env: |
| 16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 17 | with: |
| 18 | manifest: .github/labels.yml |
| 19 | |