chore(workflows): trigger web-deploy on dev push too

PRs land on `dev` (master is blocked by `block-master-pr`), but the
deploy workflow only listened to `master` pushes — so #3853's web/
dependency bumps merged to dev with no Cloudflare deployment ever
running.

Add `dev` to the push branches list. The existing `paths` filter
keeps the deploy from firing on non-web changes, and `workflow_dispatch`
is preserved as the manual fallback.
This commit is contained in:
YeonGyu-Kim
2026-05-08 14:57:58 +09:00
parent 8667d7e5b8
commit 7fe197d8f1
+1 -1
View File
@@ -8,7 +8,7 @@ on:
required: false
default: ""
push:
branches: [master]
branches: [master, dev]
paths:
- "web/**"
- ".github/workflows/web-deploy.yml"