-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12437 from keymanapp/chore/common/hooks
chore(common): detect ssh remotes in git hooks
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ fi | |
|
||
GIT_ORIGIN="$(git remote get-url origin)" | ||
|
||
if [[ ! "$GIT_ORIGIN" =~ github\.com/keymanapp ]]; then | ||
if [[ ! "$GIT_ORIGIN" =~ github\.com(/|:)keymanapp ]]; then | ||
# Not a Keyman repository. We have no opinion. | ||
# echo "DEBUG: Not a Keyman repository. We don't care" | ||
exit 0 | ||
|
@@ -107,14 +107,18 @@ function print_error() { | |
echo -e "----------------------------------------------------------${t_end}" | ||
echo -e "Valid types: ${t_grn}${types[@]}${t_end}" | ||
echo -e "Valid scopes: ${t_grn}${scopes[@]}${t_end}" | ||
echo -e "Max length (first line): ${t_grn}$max_length${t_end}" | ||
echo -e "" | ||
echo -e "Min length (first line): ${t_grn}$min_length${t_end}" | ||
echo -e "Max length (first line): ${t_grn}$max_length${t_end}" | ||
echo -e "" | ||
echo -e "If possible, append git trailers:" | ||
echo -e " * ${t_grn}Fixes: #1234${t_end}" | ||
echo -e " * ${t_grn}Fixes: KEYMAN-MODULE-XYZ${t_end}" | ||
echo -e " * ${t_grn}Cherry-pick-of: #2468${t_end}" | ||
echo -e " * ${t_grn}Co-authored-by: Firstname Lastname <[email protected]>${t_end}" | ||
echo -e "" | ||
echo -e "${t_cyn}Example:${t_end} fix(windows): Re-attach the widget plug which had fallen out" | ||
echo -e "" | ||
echo -e "${t_cyn}Reference${t_end}: https://github.com/keymanapp/keyman/wiki/Pull-Request-and-Commit-workflow-notes" | ||
echo -e "" | ||
echo -e "Tips: " | ||
|
@@ -136,4 +140,4 @@ if [[ ! $msg =~ $regexp ]]; then | |
print_error | ||
fi | ||
exit 1 | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters