summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTiejunZhou <[email protected]>2023-04-17 13:16:14 +0800
committerGitHub <[email protected]>2023-04-17 13:16:14 +0800
commitd64ef2ab064047ab5aed15c7861e5a44ab8022e3 (patch)
tree78195b2f9613fd426ddfe9ddc2d1ed6c07792165 /.github
parent4c4547d5d5a837fbc5ed0f8ba3315792da732f2a (diff)
Filter the path for PR trigger and add codeowners (#248)
* Filter the path for PR trigger * Add codeowners * Fix syntax in pipeline
Diffstat (limited to '.github')
-rw-r--r--.github/CODEOWNERS1
-rw-r--r--.github/workflows/ci_cortex_m0.yml5
-rw-r--r--.github/workflows/ci_cortex_m3.yml5
-rw-r--r--.github/workflows/ci_cortex_m4.yml5
-rw-r--r--.github/workflows/ci_cortex_m7.yml5
5 files changed, 21 insertions, 0 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
new file mode 100644
index 00000000..f8a27b70
--- /dev/null
+++ b/.github/CODEOWNERS
@@ -0,0 +1 @@
+@azure-rtos/admins \ No newline at end of file
diff --git a/.github/workflows/ci_cortex_m0.yml b/.github/workflows/ci_cortex_m0.yml
index b098514e..0e1568f4 100644
--- a/.github/workflows/ci_cortex_m0.yml
+++ b/.github/workflows/ci_cortex_m0.yml
@@ -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:
diff --git a/.github/workflows/ci_cortex_m3.yml b/.github/workflows/ci_cortex_m3.yml
index 179c19b3..c5812025 100644
--- a/.github/workflows/ci_cortex_m3.yml
+++ b/.github/workflows/ci_cortex_m3.yml
@@ -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:
diff --git a/.github/workflows/ci_cortex_m4.yml b/.github/workflows/ci_cortex_m4.yml
index b2ba8a9d..30141d6b 100644
--- a/.github/workflows/ci_cortex_m4.yml
+++ b/.github/workflows/ci_cortex_m4.yml
@@ -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:
diff --git a/.github/workflows/ci_cortex_m7.yml b/.github/workflows/ci_cortex_m7.yml
index 7492b697..4089cefb 100644
--- a/.github/workflows/ci_cortex_m7.yml
+++ b/.github/workflows/ci_cortex_m7.yml
@@ -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: