Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas committed Oct 27, 2023
1 parent 29d4851 commit ecd6141
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions hooks/common/post-flow-feature-publish
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ if [[ $ORIGIN =~ ^git@github\.com ]]; then
repo=$(echo $ORIGIN | sed -e 's/^git@github\.com://' -e 's/\.git$//')
if command -v gh &> /dev/null; then
gh pr create \
--title "Merge feature $BRANCH" \
--body "Feature $BRANCH. Do not delete the feature branch after the merge." \
--title "Merge $BRANCH" \
--body "Feature $VERSION. Do not delete the feature branch after the merge." \
--base $DEVELOP_BRANCH \
--repo $repo
# TODO: use --web optionally so the user can edit the PR?!?
Expand Down
4 changes: 2 additions & 2 deletions hooks/common/post-flow-release-publish
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ if [[ $ORIGIN =~ ^git@github\.com ]]; then
repo=$(echo $ORIGIN | sed -e 's/^git@github\.com://' -e 's/\.git$//')
if command -v gh &> /dev/null; then
gh pr create \
--title "Merge release $BRANCH" \
--body "Release $BRANCH. Do not delete the release branch after the merge." \
--title "Merge $BRANCH" \
--body "Release $VERSION. Do not delete the release branch after the merge." \
--base $MASTER_BRANCH \
--repo $repo
# TODO: use --web optionally so the user can edit the PR?!?
Expand Down

0 comments on commit ecd6141

Please sign in to comment.