-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge before test #55
base: main
Are you sure you want to change the base?
Conversation
5e84c64
to
69d988c
Compare
@@ -68,6 +68,9 @@ def _checkout_repo(self, gevent, repo_path): | |||
'expected_sha': gevent.head_sha, | |||
'sha': gitbin.rev_parse('HEAD') | |||
}) | |||
|
|||
if FFCONFIG.failfast['build']['rebase'] is True: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if FFCONFIG.failfast['build']['rebase']:
is probably more pythonic
|
||
|
||
def strtobool(s): | ||
if s in ["yes", "on", "true", "True", "TRUE"]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can refactor this as simple one liner return s in ["yes", "on", ...]
Automatic rebase on master would be awesome in Kubespray, but what happens when there is a conflict? Would it fail the GitHub check or continue without rebase? |
it should fail yes |
I've deployed it once; But the sha is then different on Gitlab so the report back to github was broken. |
No description provided.