diff options
| author | TiejunZhou <[email protected]> | 2023-04-17 13:16:14 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-17 13:16:14 +0800 |
| commit | d64ef2ab064047ab5aed15c7861e5a44ab8022e3 (patch) | |
| tree | 78195b2f9613fd426ddfe9ddc2d1ed6c07792165 /.github/workflows | |
| parent | 4c4547d5d5a837fbc5ed0f8ba3315792da732f2a (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/workflows')
| -rw-r--r-- | .github/workflows/ci_cortex_m0.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/ci_cortex_m3.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/ci_cortex_m4.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/ci_cortex_m7.yml | 5 |
4 files changed, 20 insertions, 0 deletions
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: |
