We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a842ca5 commit b46c6a0Copy full SHA for b46c6a0
.github/labeler.yml
@@ -0,0 +1,28 @@
1
+ci:
2
+ - .github/*
3
+ - .github/**/*
4
+ - .circleci/*
5
+ - .circleci/**/*
6
+ - .travis.yml
7
+
8
+build:
9
+ - composer.json
10
+ - composer.lock
11
+ - package-lock.json
12
+ - package.json
13
+ - yarn.lock
14
15
+docs:
16
+ - docs/*
17
+ - docs/**/*
18
19
+feat:
20
+ - src/*
21
+ - src/**/*
22
23
+test:
24
+ - phpunit.*
25
+ - test/*
26
+ - test/**/*
27
+ - tests/*
28
+ - tests/**/*
.github/workflows/auto-label-prs.yml
@@ -0,0 +1,11 @@
+name: Auto label Pull Requests
+on: pull_request_target
+jobs:
+ triage:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@main
+ with:
+ repo-token: '${{ secrets.GITHUB_TOKEN }}'
0 commit comments