Skip to content

Commit

Permalink
Merge pull request #777 from conda-forge/beckermr-patch-1
Browse files Browse the repository at this point in the history
fix: do not automerge if rerendering is running
  • Loading branch information
beckermr authored Nov 18, 2024
2 parents 5206d19 + f8dc250 commit b7470dd
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,11 @@ def _all_statuses_and_checks_ok(status_states, check_states, req_checks_and_stat
final_states[req] = None if not found_state else state
LOGGER.info("final status: name|state = %s|%s", req, final_states[req])

if "conda-forge-rerendering-service" in status_states:
final_states["rerender called"] = status_states[
"conda-forge-rerendering-service"
]

return all(v for v in final_states.values()), final_states


Expand Down

0 comments on commit b7470dd

Please sign in to comment.