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:
Orlix 2022-12-19 12:45:47 +02:00 committed by GitHub
parent a75b960868
commit da8dae3e28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -16,9 +16,13 @@ env:
on:
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
push:
paths-ignore:
- 'docs/**'
- 'docs/**'
- '**.md'
jobs:
UTTEST:

View File

@ -2,7 +2,13 @@ name: "Code scanning - action"
on:
push:
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
schedule:
- cron: '0 16 * * 6'