CI: cancel running jobs on updates

main
Miloš Komarčević 3 years ago committed by Rosen Penev
parent 1958e70a71
commit 8001807f4d

@ -2,6 +2,9 @@
# https://google.github.io/oss-fuzz/getting-started/continuous-integration/
name: CIFuzz
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:

@ -5,6 +5,10 @@
# or to provide custom queries or build logic.
name: "CodeQL"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [0.27-maintenance, main]

@ -6,6 +6,10 @@ on:
schedule:
- cron: 0 4 * * *
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
name: Nightly - Linux distributions
jobs:

@ -4,6 +4,10 @@
name: On PRs - Linux-Ubuntu Quick Fuzz
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:

@ -1,5 +1,9 @@
name: On PRs - Linux-Ubuntu Matrix
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:

@ -1,5 +1,9 @@
name: On PRs - Linux Special Builds
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:

@ -1,5 +1,9 @@
name: On PRs - Linux - Static Analysis
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:

@ -1,5 +1,9 @@
name: On PRs - Mac Matrix
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:

@ -1,5 +1,9 @@
name: On PRs - Mac Special Builds
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:

@ -1,5 +1,9 @@
name: On PRs - Windows Matrix
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:

@ -8,6 +8,10 @@ on:
paths-ignore:
- "*.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
name: On PUSH - Basic CI for main platforms
jobs:

@ -1,5 +1,9 @@
name: On PUSH - Linux Special Builds for main branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:

@ -1,4 +1,7 @@
name: Clang Format Checker
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push, pull_request]
jobs:
clang-format-checking:

@ -1,4 +1,7 @@
name: Release
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
tags:

Loading…
Cancel
Save