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 ac01ec0 commit c9f7f32Copy full SHA for c9f7f32
.github/labeler.yml
@@ -0,0 +1,19 @@
1
+cli:
2
+ - 'packages/cli/**/*'
3
+
4
+core:
5
+ - 'packages/core/**/*'
6
7
+documentation:
8
+ - '**/*.md'
9
+ - '**/*.mdx'
10
11
+github-actions:
12
+ - '.github/workflows/**/*'
13
14
+dependencies:
15
+ - 'package.json'
16
+ - 'pnpm-lock.yaml'
17
+ - '**/package.json'
18
19
.github/workflows/labeler.yml
@@ -0,0 +1,17 @@
+name: "Pull Request Labeler"
+on:
+ - pull_request_target
+permissions:
+ contents: read
+ pull-requests: write
+jobs:
+ triage:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v5
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ sync-labels: true
0 commit comments