-
Notifications
You must be signed in to change notification settings - Fork 146
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
bump compose version to v2.24.0 #977
Conversation
Signed-off-by: jhrotko <[email protected]>
@thaJeztah we closed the previous PR as it wasn't a fork branch and @jhrotko didn't have the right to push force to the branch the signed commit, can you please review this one? |
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.
LGTM
Weird; something is failing in Jenkins; looks like it fails to checkout the branch for some reason 🤔
|
Wait... it's trying to checkout
|
wondering if it’s some env-var ( |
Minor nit; @jhrotko it looks like you have your git configured without your "real name";
technically, DCO sign-off require to use your full name (see https://github.com/docker/cli/blob/master/CONTRIBUTING.md#sign-your-work);
Steps to do so "roughly" come down to: git config --global user.name "YourFirstName YourLastName"
git config --global user.email "[email protected]" After that, signing off ( |
☝️ Also; Pro-Tip: you can configure your upstream remote to use an invalid push URL; that way it's not possible to push to upstream (unless you specify the URL to push to) All my github forks looks like this; git remote -v
origin https://github.com/thaJeztah/docker-ce-packaging.git (fetch)
origin https://github.com/thaJeztah/docker-ce-packaging.git (push)
upstream https://github.com/docker/docker-ce-packaging.git (fetch)
upstream no_pushing (push) Configure using; git remote set-url --push upstream no_pushing It's a bit of a hack, but it definitely saved me from some accidental pushes when I wasn't paying attention. With the that hack, if you try to push to upstream, it will fail (invalid URL) |
No description provided.