Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas committed Oct 31, 2023
1 parent ecd6c03 commit cbea70d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hooks/common/post-flow-feature-publish
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [[ $ORIGIN_URL =~ ^git@github\.com ]]; then
echo "Do not delete the feature branch after the PR is merged. It will be deleted automatically when the feature is finished."
echo ""
fi
elif [[ $ORIGIN_URL =~ ^https://gitbuh.com ]]; then
elif [[ $ORIGIN_URL =~ ^https://github\.com ]]; then
repo=$(echo $ORIGIN_URL | sed -e 's/https:\/\/github\.com\///' -e 's/\.git$//')
if command -v gh &> /dev/null; then
gh pr create \
Expand Down
2 changes: 1 addition & 1 deletion hooks/common/post-flow-hotfix-publish
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [[ $ORIGIN_URL =~ ^git@github\.com ]]; then
echo "Do not delete the hotfix branch after the PR is merged. It will be deleted automatically when the hotfix is finished."
echo ""
fi
elif [[ $ORIGIN_URL =~ ^https://gitbuh.com ]]; then
elif [[ $ORIGIN_URL =~ ^https://github\.com ]]; then
repo=$(echo $ORIGIN_URL | sed -e 's/https:\/\/github\.com\///' -e 's/\.git$//')
if command -v gh &> /dev/null; then
gh pr create \
Expand Down
2 changes: 1 addition & 1 deletion hooks/common/post-flow-release-publish
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [[ $ORIGIN_URL =~ ^git@github\.com ]]; then
echo "Do not delete the release branch after the PR is merged. It will be deleted automatically when the release is finished."
echo ""
fi
elif [[ $ORIGIN_URL =~ ^https://gitbuh.com ]]; then
elif [[ $ORIGIN_URL =~ ^https://github\.com ]]; then
repo=$(echo $ORIGIN_URL | sed -e 's/https:\/\/github\.com\///' -e 's/\.git$//')
if command -v gh &> /dev/null; then
gh pr create \
Expand Down

0 comments on commit cbea70d

Please sign in to comment.