-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows: auto label pull-requests
Signed-off-by: Quentin Guidée <[email protected]>
- Loading branch information
1 parent
3c89448
commit 6ddaf34
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
'repo: Client': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- 'client/**' | ||
|
||
'repo: Server': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- 'server/**' | ||
|
||
'repo: Docs': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- 'docs/**' | ||
|
||
'repo: Components': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- 'packages/components/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Pull Request | ||
|
||
on: [pull_request_target] | ||
|
||
jobs: | ||
add-labels: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add labels | ||
uses: actions/labeler@v5 |