Skip to content

Commit 04970ac

Browse files
authored
Merge pull request #354 from umihico/fix/prevent-concurrent-deployments
Fix: Prevent concurrent deployments by excluding main branch from check workflow
2 parents c970eef + d65480d commit 04970ac

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: check
22

33
on:
4-
- push
4+
push:
5+
branches-ignore:
6+
- main
7+
workflow_dispatch:
58

69
permissions:
710
id-token: write

0 commit comments

Comments
 (0)