Skip to content

Commit

Permalink
Fix integration test concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
mamercad committed Nov 13, 2023
1 parent a963765 commit c44741f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ansible-test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
- cron: '10 6 * * *'

concurrency:
group: cloud-integration-tests
cancel-in-progress: false
group: "${{ github.workflow }}"
cancel-in-progress: true

jobs:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
types: [ opened, synchronize, reopened ]

concurrency:
group: cloud-integration-tests
cancel-in-progress: false
group: "${{ github.workflow }}-${{ github.event.pull_request.number }}"
cancel-in-progress: true

jobs:

Expand Down
2 changes: 2 additions & 0 deletions changelogs/fragments/38-integration-test-concurrency.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trivial:
- ci - Fix integration test concurrency (https://github.com/ansible-collections/community.healthchecksio/pull/38).

0 comments on commit c44741f

Please sign in to comment.