Skip to content

Commit ae6f869

Browse files
committed
fix(ci): remove push trigger to prevent duplicate runs
Only trigger CI on pull_request events. This eliminates the duplicate runs that occurred when both push and pull_request events fired for the same commit on a PR.
1 parent 9610a2e commit ae6f869

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ name: CI
33
on:
44
pull_request:
55
branches: [develop, main]
6-
push:
7-
branches: [develop, main]
8-
9-
concurrency:
10-
group: ci-${{ github.event.pull_request.head.sha || github.sha }}
11-
cancel-in-progress: true
126

137
jobs:
148
ci:

0 commit comments

Comments
 (0)