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 9275cad commit 3d6ecb1Copy full SHA for 3d6ecb1
.github/workflows/pr-builder.yml
@@ -10,6 +10,11 @@ on:
10
- "LICENSE"
11
workflow_dispatch:
12
13
+# Avoid running multiple builds for the same PR.
14
+concurrency:
15
+ group: pr-builder-${{ github.ref }}
16
+ cancel-in-progress: true
17
+
18
env:
19
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
@@ -118,7 +123,7 @@ jobs:
118
123
- name: 🧩 Install Dependencies
119
124
id: install-dependencies
120
125
run: pnpm install
121
-
126
122
127
- name: 🏗️ Build
128
id: build
129
run: pnpm build
@@ -170,7 +175,7 @@ jobs:
170
175
171
176
172
177
173
178
174
179
180
181
0 commit comments