We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3049bf2 commit 558c0a4Copy full SHA for 558c0a4
.github/labeler.yml
@@ -0,0 +1,23 @@
1
+C++:
2
+ - cpp/**/*
3
+ - change-notes/**/*cpp*
4
+
5
+C#:
6
+ - csharp/**/*
7
+ - change-notes/**/*csharp*
8
9
+Java:
10
+ - java/**/*
11
+ - change-notes/**/*java.*
12
13
+JS:
14
+ - javascript/**/*
15
+ - change-notes/**/*javascript*
16
17
+Python:
18
+ - python/**/*
19
+ - change-notes/**/*python*
20
21
+documentation:
22
+ - **/*.qhelp
23
+ - **/*.md
.github/workflows/labeler.yml
@@ -0,0 +1,11 @@
+name: "Pull Request Labeler"
+on:
+- pull_request
+jobs:
+ triage:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v2
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments