1
0
mirror of https://github.com/azure-rtos/threadx synced 2025-01-16 07:42:57 +08:00

Filter the path for PR trigger and add codeowners (#248)

* Filter the path for PR trigger

* Add codeowners

* Fix syntax in pipeline
This commit is contained in:
TiejunZhou 2023-04-17 13:16:14 +08:00 committed by GitHub
parent 4c4547d5d5
commit d64ef2ab06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 44 additions and 2 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@ -0,0 +1 @@
@azure-rtos/admins

View File

@ -9,6 +9,11 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- ".github/workflows/ci_cortex_m0.yml"
- 'common/**'
- 'utility/**'
- 'ports/cortex_m0/gnu/**'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:

View File

@ -9,6 +9,11 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- ".github/workflows/ci_cortex_m3.yml"
- 'common/**'
- 'utility/**'
- 'ports/cortex_m3/gnu/**'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:

View File

@ -9,6 +9,11 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- ".github/workflows/ci_cortex_m4.yml"
- 'common/**'
- 'utility/**'
- 'ports/cortex_m4/gnu/**'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:

View File

@ -9,6 +9,11 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- ".github/workflows/ci_cortex_m7.yml"
- 'common/**'
- 'utility/**'
- 'ports/cortex_m7/gnu/**'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:

View File

@ -2,7 +2,18 @@ trigger:
- master
pr:
- master
branches:
include:
- master
paths:
include:
- ".pipelines/tx.yml"
- "common_smp/**"
- "samples/**"
- "test/tx/**"
- "utility/**"
- "ports_smp/linux/gnu/**"
pool:
vmImage: "ubuntu-22.04"

View File

@ -2,7 +2,17 @@ trigger:
- master
pr:
- master
branches:
include:
- master
paths:
include:
- ".pipelines/tx.yml"
- "common/**"
- "samples/**"
- "test/tx/**"
- "utility/**"
- "ports/linux/gnu/**"
pool:
vmImage: "ubuntu-22.04"