We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c42ed86 + 65716b3 commit e79cdf7Copy full SHA for e79cdf7
commit0/harness/save.py
@@ -75,7 +75,9 @@ def main(
75
origin.push(refspec=f"{branch}:{branch}")
76
logger.info(f"Pushed to {github_repo_url} on branch {branch}")
77
except Exception as e:
78
- raise Exception(f"Push {branch} to {owner}/{repo_name} fails.\n{str(e)}")
+ logger.error(f"Push {branch} to {owner}/{repo_name} fails.\n{str(e)}")
79
+ continue
80
+ # raise Exception(f"Push {branch} to {owner}/{repo_name} fails.\n{str(e)}")
81
82
83
__all__ = []
0 commit comments