fix: scope smoke-init CI to init-related changes only #8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The
smoke-initworkflow runs on every push and PR, even when the changes don't touchdisinto initor related code. It spins up a full Forgejo instance inside CI, which is slow and wastes resources on unrelated PRs.Fix
Add a
pathfilter to.woodpecker/smoke-init.ymlso it only triggers when init-related files change:This keeps the full end-to-end init test but avoids running it on PRs that only touch agents, formulas, or other unrelated code.