Skip to content

chore: remove common labels from labels.yaml #4

chore: remove common labels from labels.yaml

chore: remove common labels from labels.yaml #4

Workflow file for this run

name: GitHub - Repository
on:
push:
branches:
- main
paths:
- .github/labels*.yaml
- .github/workflows/github.repo.yaml
pull_request:
paths:
- .github/labels*.yaml
- .github/workflows/github.repo.yaml
workflow_dispatch: {}
jobs:
sync-labels:
name: Sync Labels
strategy:
matrix:
config_file:
- .github/labels.yaml
- .github/labels.common.yaml
uses: tedilabs/github-actions/.github/workflows/github.repo.sync-labels.yaml@main
permissions:
contents: read
issues: write
with:
config_file: ${{ matrix.config_file }}
skip_delete: true
dry_run: ${{ github.event_name == 'pull_request' }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}