We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d1722d commit c5b20f1Copy full SHA for c5b20f1
.github/workflows/build.yml
@@ -7,9 +7,9 @@ on:
7
branches:
8
- "**"
9
10
-# This is conservative: ideally we'd include branch and stage in this key
11
-# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
12
-concurrency: deploy-python-editor-v3
+concurrency:
+ group: ${{ github.workflow }}-${{ startsWith(github.ref, 'refs/tags/v') && 'release' || github.ref }}
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/v') }}
13
14
jobs:
15
build:
0 commit comments