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 ae21908 commit 5058aa1Copy full SHA for 5058aa1
.github/labeler.yml
@@ -0,0 +1,13 @@
1
+'task:mpi':
2
+ - "tasks/mpi"
3
+'task:omp':
4
+ - "tasks/omp"
5
+'task:seq':
6
+ - "tasks/seq"
7
+'task:stl':
8
+ - "tasks/stl"
9
+'task:tbb':
10
+ - "tasks/tbb"
11
+ci:
12
+ - ".github"
13
+ - "appveyor.yml"
.github/workflows/labeler.yml
@@ -0,0 +1,21 @@
+name: "Label PRs"
+
+on:
+ - pull_request_target
+jobs:
+ auto-label:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ pull-requests: write
+ steps:
+ - name: Check out repository
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ - name: Apply labels based on changed files
18
+ uses: actions/labeler@v5
19
20
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
21
+ configuration-path: ".github/labeler.yml"
0 commit comments