Skip to content

Commit d64ef2a

Browse files
Filter the path for PR trigger and add codeowners (#248)
* Filter the path for PR trigger * Add codeowners * Fix syntax in pipeline
1 parent 4c4547d commit d64ef2a

File tree

7 files changed

+44
-2
lines changed

7 files changed

+44
-2
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@azure-rtos/admins

.github/workflows/ci_cortex_m0.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
branches: [ master ]
1010
pull_request:
1111
branches: [ master ]
12+
paths:
13+
- ".github/workflows/ci_cortex_m0.yml"
14+
- 'common/**'
15+
- 'utility/**'
16+
- 'ports/cortex_m0/gnu/**'
1217

1318
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1419
jobs:

.github/workflows/ci_cortex_m3.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
branches: [ master ]
1010
pull_request:
1111
branches: [ master ]
12+
paths:
13+
- ".github/workflows/ci_cortex_m3.yml"
14+
- 'common/**'
15+
- 'utility/**'
16+
- 'ports/cortex_m3/gnu/**'
1217

1318
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1419
jobs:

.github/workflows/ci_cortex_m4.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
branches: [ master ]
1010
pull_request:
1111
branches: [ master ]
12+
paths:
13+
- ".github/workflows/ci_cortex_m4.yml"
14+
- 'common/**'
15+
- 'utility/**'
16+
- 'ports/cortex_m4/gnu/**'
1217

1318
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1419
jobs:

.github/workflows/ci_cortex_m7.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
branches: [ master ]
1010
pull_request:
1111
branches: [ master ]
12+
paths:
13+
- ".github/workflows/ci_cortex_m7.yml"
14+
- 'common/**'
15+
- 'utility/**'
16+
- 'ports/cortex_m7/gnu/**'
1217

1318
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1419
jobs:

.pipelines/smp.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@ trigger:
22
- master
33

44
pr:
5-
- master
5+
branches:
6+
include:
7+
- master
8+
paths:
9+
include:
10+
- ".pipelines/tx.yml"
11+
- "common_smp/**"
12+
- "samples/**"
13+
- "test/tx/**"
14+
- "utility/**"
15+
- "ports_smp/linux/gnu/**"
16+
617

718
pool:
819
vmImage: "ubuntu-22.04"

.pipelines/tx.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,17 @@ trigger:
22
- master
33

44
pr:
5-
- master
5+
branches:
6+
include:
7+
- master
8+
paths:
9+
include:
10+
- ".pipelines/tx.yml"
11+
- "common/**"
12+
- "samples/**"
13+
- "test/tx/**"
14+
- "utility/**"
15+
- "ports/linux/gnu/**"
616

717
pool:
818
vmImage: "ubuntu-22.04"

0 commit comments

Comments
 (0)