Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

Introduce concurrency setting for PR build #333

Merged
merged 1 commit into from
Mar 21, 2023
Merged
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
8 changes: 8 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ jobs:
ubuntu-build:
name: Build on Ubuntu
runs-on: ubuntu-latest
timeout-minutes: 60
concurrency:
group: ${{ github.head_ref }}-ubuntu
cancel-in-progress: true

steps:
- name: Checkout Repository
Expand Down Expand Up @@ -35,6 +39,10 @@ jobs:
windows-build:
name: Build on Windows
runs-on: windows-latest
timeout-minutes: 60
concurrency:
group: ${{ github.head_ref }}-windows
cancel-in-progress: true

steps:
- name: Checkout Repository
Expand Down