Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ on:

name: CI

concurrency:
# When a PR number isn't available, the event won't be a `pull_request` event so it won't matter.
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
# Only cancel when the event is a pull_request
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
docker_smoketests:
name: Smoketests
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/csharp-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on:
- master
pull_request:

concurrency:
# When a PR number isn't available, the event won't be a `pull_request` event so it won't matter.
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
# Only cancel when the event is a pull_request
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
unity-testsuite:
runs-on: spacetimedb-runner
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/internal-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ name: Internal Tests
permissions:
contents: read

concurrency:
# When a PR number isn't available, the event won't be a `pull_request` event so it won't matter.
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
# Only cancel when the event is a pull_request
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
run-tests:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/typescript-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
pull_request:
merge_group:

concurrency:
# When a PR number isn't available, the event won't be a `pull_request` event so it won't matter.
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
# Only cancel when the event is a pull_request
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
build-and-test:
runs-on: ubuntu-latest
Expand Down
Loading