1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00

Add labeler workflow.

This commit is contained in:
Brenden Matthews 2022-09-30 17:43:13 -05:00
parent 5d22723937
commit 08d03cc7a2
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD
2 changed files with 40 additions and 0 deletions

26
.github/labaler.yml vendored Normal file
View File

@ -0,0 +1,26 @@
documentation:
- docs/*
extras:
- extras/*
- extras/**/*
sources:
- src/*
- src/**/*
tests:
- tests/**/*
- tests/*
web:
- web/*
- web/**/*
appimage:
- appimage/*
- appimage/**/*
3rdparty:
- 3rdparty/*
- 3rdparty/**/*

14
.github/workflows/labaler.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: "Pull Request Labeler"
on:
- pull_request_target
jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"