Skip to content

Commit f54a306

Browse files
committed
Fix CI workflow to prevent duplicate runs
- Remove push trigger for development branch to avoid duplicate runs - Remove non-existent develop branch from triggers - Keep only main for push triggers and main/development for PR triggers
1 parent 4e1ccf4 commit f54a306

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [main, develop, development]
5+
branches: [main]
66
pull_request:
7-
branches: [main, develop, development]
7+
branches: [main, development]
88

99
# Prevent duplicate runs
1010
concurrency:

0 commit comments

Comments
 (0)