1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-16 04:02:15 +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

48
.github/labeler.yml vendored
View File

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