Skip to content

Commit

Permalink
fix: don't cancel jobs which are required
Browse files Browse the repository at this point in the history
  • Loading branch information
gsk967 committed Sep 24, 2024
1 parent 4e16c9a commit e98171a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-umee-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

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

jobs:
umeed-docker:
Expand Down Expand Up @@ -46,8 +46,8 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate swagger docs

- name: Generate swagger docs
run: |
make proto-swagger-gen
make proto-update-swagger-docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/simulations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

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

jobs:
install-dependencies:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

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

jobs:
install-tparse:
Expand Down

0 comments on commit e98171a

Please sign in to comment.