-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add auto labeling to PRs [skip release] (#1025)
* chore: add auto labeling to PRs [skip release] * chore: allow any file type for test label to be added
- Loading branch information
1 parent
a979e04
commit 5e949a3
Showing
2 changed files
with
33 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,21 @@ | ||
test: | ||
- test/**/* | ||
|
||
documentation: | ||
- www/**/* | ||
- ./**/*.md | ||
|
||
providers: | ||
- src/providers/**/* | ||
- www/docs/configuration/providers.md | ||
- test/integration/**/* | ||
|
||
adapters: | ||
- src/adapters/**/* | ||
- www/docs/schemas/adapters.md | ||
|
||
databases: | ||
- www/docs/schemas/*.md | ||
- test/docker/databases/**/* | ||
- www/docs/configuration/databases.md | ||
- test/fixtures/**/* |
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,12 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@main | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
sync-labels: true |