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.
29 lines
690 B
YAML
29 lines
690 B
YAML
name: sync-labels
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .github/labels.yaml
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
labels:
|
|
name: Run sync
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8 # v2.3.2
|
|
with:
|
|
# Configuration file
|
|
config-file: |
|
|
https://raw.githubusercontent.com/fluxcd/community/main/.github/standard-labels.yaml
|
|
.github/labels.yaml
|
|
# Strictly declarative
|
|
delete-other-labels: true
|