Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
354 B
YAML
18 lines
354 B
YAML
name: labels
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths:
|
|
- .github/labels.yml
|
|
- .github/workflows/labels.yml
|
|
jobs:
|
|
labeler:
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: crazy-max/ghaction-github-labeler@v5
|
|
with:
|
|
yaml-file: .github/labels.yml
|