mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
Bumps the ci group with 1 update: [actions/checkout](https://github.com/actions/checkout).
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8ade135a41...b4ffde65f4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: ci
...
Signed-off-by: dependabot[bot] <support@github.com>
28 lines
690 B
YAML
28 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
|