Skip to content

Commit 1fe5d30

Browse files
graycreateclaude
andauthored
ci: optimize workflow triggers (#165)
- CI workflow now only runs on pull_request to main branch - Added workflow_dispatch for manual triggering - Removed push trigger to avoid duplicate runs (release handles push to main) - Removed develop branch from triggers to simplify branch strategy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <[email protected]>
1 parent db9a78d commit 1fe5d30

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

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

33
on:
4-
push:
5-
branches: [ main, develop ]
64
pull_request:
7-
branches: [ main, develop ]
5+
branches: [main]
6+
workflow_dispatch:
87

98
permissions:
109
contents: read

0 commit comments

Comments
 (0)