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: documentation:
- changed-files:
- any-glob-to-any-file:
- doc/* - doc/*
- doc/**/* - doc/**/*
extras: extras:
- changed-files:
- any-glob-to-any-file:
- extras/* - extras/*
- extras/**/* - extras/**/*
sources: sources:
- changed-files:
- any-glob-to-any-file:
- src/* - src/*
- src/**/* - src/**/*
tests: tests:
- changed-files:
- any-glob-to-any-file:
- tests/**/* - tests/**/*
- tests/* - tests/*
web: web:
- changed-files:
- any-glob-to-any-file:
- web/* - web/*
- web/**/* - web/**/*
appimage: appimage:
- changed-files:
- any-glob-to-any-file:
- appimage/* - appimage/*
- appimage/**/* - appimage/**/*
3rdparty: 3rdparty:
- changed-files:
- any-glob-to-any-file:
- 3rdparty/* - 3rdparty/*
- 3rdparty/**/* - 3rdparty/**/*
gh-actions: gh-actions:
- changed-files:
- any-glob-to-any-file:
- .github/workflows/* - .github/workflows/*
- .github/workflows/**/* - .github/workflows/**/*

View File

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