mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 18:25:56 +01:00
Skip CI tests when *.md modifications are made (#17975)
* Skip CI tests when *.md modifications are made No need to do full test if internal documentations is changed! Saves resources and makes the PR test much faster! Signed-off-by: OrlinVasilev <ovasilev@vmware.com> * Skip CI tests when *.md modifications are made No need to do full test if internal documentations is changed! Saves resources and makes the PR test much faster! Signed-off-by: OrlinVasilev <ovasilev@vmware.com> Signed-off-by: OrlinVasilev <ovasilev@vmware.com> Co-authored-by: OrlinVasilev <ovasilev@vmware.com>
This commit is contained in:
parent
a75b960868
commit
da8dae3e28
4
.github/workflows/CI.yml
vendored
4
.github/workflows/CI.yml
vendored
@ -16,9 +16,13 @@ env:
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '**.md'
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
- '**.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
UTTEST:
|
UTTEST:
|
||||||
|
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
@ -2,7 +2,13 @@ name: "Code scanning - action"
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '**.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- '**.md'
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 16 * * 6'
|
- cron: '0 16 * * 6'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user