Files
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5e4cf14f51 chore(deps): bump actions/checkout from 6 to 7 (#215)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-19 09:18:44 +02:00

33 lines
716 B
YAML

name: Sync labels
on:
push:
branches: [master, main]
paths:
- .github/labels.yml
- .github/workflows/sync-labels.yml
workflow_dispatch:
inputs:
dry_run:
description: 'Show diff without applying'
required: false
default: 'false'
type: boolean
permissions:
issues: write
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Sync labels from .github/labels.yml
uses: crazy-max/ghaction-github-labeler@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
skip-delete: false
dry-run: ${{ inputs.dry_run || false }}