Hacker News new | ask | show | jobs
by chad_oliver 1742 days ago
> We still couldn't figure out how to push code to a protected branch without triggering the same/other workflows.

If you include `[skip ci]` anywhere in the commit message, that commit won't trigger any github actions. This is a built-in behavior; you don't have to manually check for that string in any downstream actions. I spent a long time trying to work around the same constraint before my colleague pointed out that `[skip ci]` was a thing.