We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3b5020 + 2fec0d0 commit 4330150Copy full SHA for 4330150
2 files changed
.github/labeler.yml
@@ -0,0 +1,24 @@
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
24
+ - docs/**/*
.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