Kill old actions in case of new changes (#13700)
* Kill old actions in case of new changes * Some new changes * Revert redundant line
This commit is contained in:
parent
d80636c56c
commit
578df5486a
4
.github/workflows/build_doc.yml
vendored
4
.github/workflows/build_doc.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: Documentation
|
||||
on: [push, pull_request]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Build_Doc:
|
||||
if: github.repository == 'openvinotoolkit/openvino'
|
||||
|
4
.github/workflows/check_pr_commits.yml
vendored
4
.github/workflows/check_pr_commits.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: PR Commits
|
||||
on: [pull_request]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Checks:
|
||||
runs-on: ubuntu-22.04
|
||||
|
4
.github/workflows/code_snippets.yml
vendored
4
.github/workflows/code_snippets.yml
vendored
@ -9,6 +9,10 @@ on:
|
||||
- '.github/workflows/code_snippets.yml'
|
||||
- 'docs/snippets/**'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
strategy:
|
||||
|
4
.github/workflows/code_style.yml
vendored
4
.github/workflows/code_style.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: Code Style
|
||||
on: [push, pull_request]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
clang-format:
|
||||
runs-on: ubuntu-20.04
|
||||
|
4
.github/workflows/files_size.yml
vendored
4
.github/workflows/files_size.yml
vendored
@ -1,6 +1,10 @@
|
||||
name: Files Size
|
||||
on: [push, pull_request]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Check_Files_Size:
|
||||
runs-on: ubuntu-22.04
|
||||
|
4
.github/workflows/mo.yml
vendored
4
.github/workflows/mo.yml
vendored
@ -7,6 +7,10 @@ on:
|
||||
paths:
|
||||
- 'openvino/tools/mo/**'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Pylint-UT:
|
||||
runs-on: ubuntu-22.04
|
||||
|
5
.github/workflows/py_checks.yml
vendored
5
.github/workflows/py_checks.yml
vendored
@ -12,6 +12,11 @@ on:
|
||||
- 'src/bindings/python/**'
|
||||
- 'samples/python/**'
|
||||
- '.github/workflows/py_checks.yml'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
linters:
|
||||
runs-on: ubuntu-20.04
|
||||
|
Loading…
Reference in New Issue
Block a user