Reputation: 166
When setting up CI with GitHub Actions I want two things:
In isolation these requirements work well:
Combined there is a problem: If a pull request doesn't touch the backend files, then that workflow never runs and the status check never passes.
I would like to be able to have the best of both worlds: allow merge when all workflows which run pass. How can this be achieved?
Upvotes: 2
Views: 1549
Reputation: 166
There are a few possible workarounds to achieve the behaviour of only requiring triggered workflows to pass:
References:
Upvotes: 2