Skip to content

Commit b0120ba

Browse files
committed
Fix 'task:*' label glob
1 parent 909a379 commit b0120ba

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/labeler.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
"task:all":
22
- changed-files:
33
- any-glob-to-any-file:
4-
- "tasks/**/all"
4+
- "tasks/**/all/**"
55

66
"task:mpi":
77
- changed-files:
88
- any-glob-to-any-file:
9-
- "tasks/**/mpi"
9+
- "tasks/**/mpi/**"
1010

1111
"task:omp":
1212
- changed-files:
1313
- any-glob-to-any-file:
14-
- "tasks/**/omp"
14+
- "tasks/**/omp/**"
1515

1616
"task:seq":
1717
- changed-files:
1818
- any-glob-to-any-file:
19-
- "tasks/**/seq"
19+
- "tasks/**/seq/**"
2020

2121
"task:stl":
2222
- changed-files:
2323
- any-glob-to-any-file:
24-
- "tasks/**/stl"
24+
- "tasks/**/stl/**"
2525

2626
"task:tbb":
2727
- changed-files:
2828
- any-glob-to-any-file:
29-
- "tasks/**/tbb"
29+
- "tasks/**/tbb/**"
3030

3131
task:
3232
- changed-files:

.github/workflows/labeler.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
issues: write
1515
pull-requests: write
1616
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v6
1719
- name: Apply labels based on changed files
1820
uses: actions/labeler@v6
1921
with:

tasks/example_processes_3/mpi/src/ops_mpi.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ bool NesterovATestTaskMPI::RunImpl() {
4040
}
4141
}
4242
}
43+
// test
4344

4445
const int num_threads = ppc::util::GetNumThreads();
4546
GetOutput() *= num_threads;

0 commit comments

Comments
 (0)