Skip to content

Commit

Permalink
cancel in progress workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ate47 committed Dec 11, 2023
1 parent 69bf047 commit 7a1692b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/package-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
required: true
type: boolean

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
check_release:
name: Check input parameters
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Pull request Tests

on: [pull_request]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
find_changes:
name: Find changes
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/schema-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ defaults:
run:
working-directory: qendpoint-backend

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sync-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- "master"

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
pull-request:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Tests

on: [push]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
find_changes:
name: Find changes
Expand Down

0 comments on commit 7a1692b

Please sign in to comment.