Skip to content

Commit

Permalink
fix: do not set bad for rerender errors
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Sep 3, 2024
1 parent 801756e commit 1cd6402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_forge_tick/auto_tick.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ def _run_migrator_on_feedstock_branch(
logger.exception("NON GITHUB ERROR")

# we don't set bad for rerendering errors
if "conda smithy rerender -c auto --no-check-uptodate" not in str(e):
if "conda smithy rerender -c auto --no-check-uptodate" not in str(e) and "Failed to rerender" not in str(e):
with attrs["pr_info"] as pri:
pri["bad"] = {
"exception": str(e),
Expand Down

0 comments on commit 1cd6402

Please sign in to comment.