Skip to content

Commit f3247cc

Browse files
committed
Fix Pages workflow to only deploy from main branch
- Pages deployment should only trigger on main branch pushes - Prevents accidental deployments from Claude/* feature branches - Manual workflow_dispatch still available for testing
1 parent 5e1b1db commit f3247cc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/pages.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
67
workflow_dispatch:
78

89
permissions:

0 commit comments

Comments
 (0)