Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
fix workflow concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
leordev committed Sep 30, 2024
1 parent 81f6c08 commit dd9464d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-conformance-table.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,15 @@ on:
required: false
permissions:
contents: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
update-conformance-table:
concurrency: conformance-table-build # always run one instance of this workflow, to avoid conflicts in the conformance json generation
runs-on: ubuntu-latest
steps:
- name: Prepare Release Mode Inputs
Expand Down

0 comments on commit dd9464d

Please sign in to comment.