Skip to content

Commit

Permalink
Correct --sign-off to --signoff in bot feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Gee <[email protected]>
  • Loading branch information
rgee0 authored and alexellis committed May 13, 2019
1 parent 49b7483 commit 027ee28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GET.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can use this file as a template: https://github.com/openfaas/faas/blob/maste

* Now raise a PR to the `.CUSTOMERS` file

Raise a PR to this file, and make sure you use `git commit --sign-off` rather than the UI to make the PR
Raise a PR to this file, and make sure you use `git commit --signoff` rather than the UI to make the PR

https://github.com/alexellis/derek/blob/master/.CUSTOMERS

Expand Down
2 changes: 1 addition & 1 deletion handler/pullRequestHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func anonymousCommitComment(contributingURL string) string {

func unsignedCommitComment(contributingURL string) string {
return `Thank you for your contribution. I've just checked and your commit doesn't appear to be signed-off. That's something we need before your Pull Request can be merged. Please see our [contributing guide](` + contributingURL + `).
Tip: if you only have one commit so far then run: ` + "`" + `git commit --amend --sign-off` + "`" + ` and then ` + "`" + `git push --force` + "`."
Tip: if you only have one commit so far then run: ` + "`" + `git commit --amend --signoff` + "`" + ` and then ` + "`" + `git push --force` + "`."
}

func emptyDescriptionComment(contributingURL string) string {
Expand Down

0 comments on commit 027ee28

Please sign in to comment.