1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-16 12:10:31 +00:00

Fix labeler v5 (#1703)

* Fix labeler v5
This commit is contained in:
Brenden Matthews 2023-12-11 21:00:00 -05:00 committed by GitHub
parent c43582e917
commit e8c6c24070
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 19 deletions

16
.github/labeler.yml vendored
View File

@ -1,31 +1,47 @@
documentation:
- changed-files:
- any-glob-to-any-file:
- doc/*
- doc/**/*
extras:
- changed-files:
- any-glob-to-any-file:
- extras/*
- extras/**/*
sources:
- changed-files:
- any-glob-to-any-file:
- src/*
- src/**/*
tests:
- changed-files:
- any-glob-to-any-file:
- tests/**/*
- tests/*
web:
- changed-files:
- any-glob-to-any-file:
- web/*
- web/**/*
appimage:
- changed-files:
- any-glob-to-any-file:
- appimage/*
- appimage/**/*
3rdparty:
- changed-files:
- any-glob-to-any-file:
- 3rdparty/*
- 3rdparty/**/*
gh-actions:
- changed-files:
- any-glob-to-any-file:
- .github/workflows/*
- .github/workflows/**/*

View File

@ -1,4 +1,4 @@
name: "Pull Request Labeler"
name: 'Pull Request Labeler'
on:
- pull_request_target
@ -9,7 +9,10 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- name: Checkout
uses: actions/checkout@v4
- name: Run labeler
uses: actions/labeler@v5
with:
sync-labels: true
repo-token: "${{ secrets.GITHUB_TOKEN }}"
repo-token: '${{ secrets.GITHUB_TOKEN }}'