We have auto-deploy setup on new branches, but sin...
# help
s
We have auto-deploy setup on new branches, but since its a monorepo setup and the frontend changes go through vercel, we need to prevent build on branches where we have not made any backend changes. Is there a command to skip build & deploy which we can run under the seed.yml buildspec in before_compile step ?
cc: @Frank
d
An option like ignored build step in vercel will be of great help here…
f
Hey @Sarfraaz Talat @Dani Akash, it’s on our roadmap to support ignoring directories (list of glob patterns) via the seed.yml. In this case, changes to the frontend would be skipped.
As a temporary work around, if you include
[skip ci]
in the commit message, that will skip the build on Seed.
Does that work for you?
s
we looked that up, but that is kind of tough one to make everyone used to, like even if one commit is made without this, the PR will get deployed, we were looking for something that would be require less intervention and more automated