mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
397 B
YAML
17 lines
397 B
YAML
name: sync-labels
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .github/labels.yaml
|
|
jobs:
|
|
sync-labels:
|
|
permissions:
|
|
contents: read # for reading the labels file.
|
|
issues: write # for creating and updating labels.
|
|
uses: fluxcd/gha-workflows/.github/workflows/labels-sync.yaml@v0.3.0
|
|
secrets:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|