all check fail still match #5067
-
why did all the checks fail, still match?
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
other case - name: automatic merge for Renovate pull requests
conditions:
- author=renovate[bot]
- check-success=build
actions:
merge:
method: merge
|
Beta Was this translation helpful? Give feedback.
-
Hi Have you checked that you didn't misspell the CI names? Anyway, I would recommend using this: - and:
- check-success:ci Instead of: - not:
- or:
- check-failure:ci The condition will be checked in the second case when the CI is pending. |
Beta Was this translation helpful? Give feedback.
-
OK, I think I get it. Mergify relies on check-run names. With a GitHub Action workflow that uses Our documentation lacks information about matrix. We'll work on it. |
Beta Was this translation helpful? Give feedback.
OK, I think I get it.
Mergify relies on check-run names. With a GitHub Action workflow that uses
strategy.matrix
, the check-run name becomes quite complex. You nearly solved it, but there is a missing space in the check's name. Try this:check-success=deploy-a (ubuntu-latest, 16, art/.output/public, augusmeow, art)
, with a space betweendeploy-a
and the rest.Our documentation lacks information about matrix. We'll work on it.