Skip to content

Commit

Permalink
set dotnet workflows: cancel-in-progress: false
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed Apr 20, 2024
1 parent d795e29 commit 01ec031
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dotnet-development-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

name: .NET DEVELOPMENT BUILD TEST (test build with once .NET Core SDK version)

concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: false

on:
push:
branches: [ "dev" ]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dotnet-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

name: .NET RELEASE BUILD TEST (test build with all .NET Core SDK version)

concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: false

on:
push:
branches: [ "main" ]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dotnet-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

name: .NET UNIT TEST (run unit test)

concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: false

on:
push:
branches:
Expand Down

0 comments on commit 01ec031

Please sign in to comment.