Compare commits
1 commit
497910d172
...
bc36c1f7fe
Author | SHA1 | Date | |
---|---|---|---|
bc36c1f7fe |
2 changed files with 27 additions and 0 deletions
9
.gitea/labeler.yml
Normal file
9
.gitea/labeler.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
frontend:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- "frontend/**"
|
||||
|
||||
backend:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- "backend/**"
|
18
.gitea/workflows/labeler.yml
Normal file
18
.gitea/workflows/labeler.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: "Pull Request Labeler"
|
||||
on:
|
||||
pull_request:
|
||||
pull_request_target:
|
||||
|
||||
jobs:
|
||||
labeler:
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/labeler@v5
|
||||
with:
|
||||
configuration-path: ".gitea/labeler.yml"
|
Reference in a new issue