You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GH actions workflow file currently uses if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"`` to skip builds for commits that have [skip ci]` in them. (I added that some days ago.)
Problem: if you push multiple commits at once and only one of them has [skip ci] in it, no CI will run.
Probably trivial to fix, just replace commits.*.message somehow, I guess.
The text was updated successfully, but these errors were encountered:
The GH actions workflow file currently uses
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"`` to skip builds for commits that have
[skip ci]` in them. (I added that some days ago.)Problem: if you push multiple commits at once and only one of them has
[skip ci]
in it, no CI will run.Probably trivial to fix, just replace
commits.*.message
somehow, I guess.The text was updated successfully, but these errors were encountered: