mirror of
https://github.com/netdata/netdata.git
synced 2025-03-14 13:12:55 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* Bump actions/labeler from 4 to 5 Bumps [actions/labeler](https://github.com/actions/labeler) from 4 to 5. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/labeler dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update config file format to account for incompatible changes. * Properly fix the labeler config. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Austin S. Hemmelgarn <austin@netdata.cloud>
21 lines
542 B
YAML
21 lines
542 B
YAML
---
|
|
# Handles labelling of PR's.
|
|
name: Pull Request Labeler
|
|
on:
|
|
pull_request_target: null
|
|
concurrency:
|
|
group: pr-label-${{ github.repository_id }}-${{ github.event.pull_request.number }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
labeler:
|
|
name: Apply PR Labels
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/labeler@v5
|
|
if: github.repository == 'netdata/netdata'
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
sync-labels: true
|