We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d2c3fe + dab480d commit 880cce0Copy full SHA for 880cce0
.github/labeler.yml
@@ -0,0 +1,14 @@
1
+cli:
2
+ - "cli/**"
3
+shared:
4
+ - "shared/**"
5
+docs:
6
+ - "docs/**"
7
+calm-hub:
8
+ - "calm-hub/**"
9
+calm:
10
+ - "calm/**"
11
+config:
12
+ - "pom.xml"
13
+ - "**/package.json"
14
+ - "**/package-lock.json"
.github/workflows/pr-labelling.yml
@@ -0,0 +1,18 @@
+name: PR Labeler
+
+on:
+ pull_request_target:
+ types: [opened, synchronize]
+jobs:
+ label:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
15
+ - name: Label PR based on changes
16
+ uses: actions/labeler@v4
17
+ with:
18
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments