You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The orb uses git show -s --format='%s' \"${JIRA_DEBUG_TEST_COMMIT:-$CIRCLE_SHA1}\") to find the jira tickets related to a deployment. This fails when the last commit is a merge, since the commit title is something like "Merge pull request #734 from [branch-name]" and does not contain the list of Jira tickets included in the merge.
It seems that a simple solution to this issue is to change the git show command to something like git show -s --format='%s' \"${CIRCLE_SHA1^..$CIRCLE_SHA1}\"). This will include all of the commits included in the merge.
Thank you for addressing this issue.
The text was updated successfully, but these errors were encountered:
The orb uses
git show -s --format='%s' \"${JIRA_DEBUG_TEST_COMMIT:-$CIRCLE_SHA1}\")
to find the jira tickets related to a deployment. This fails when the last commit is a merge, since the commit title is something like "Merge pull request #734 from [branch-name]" and does not contain the list of Jira tickets included in the merge.It seems that a simple solution to this issue is to change the
git show
command to something likegit show -s --format='%s' \"${CIRCLE_SHA1^..$CIRCLE_SHA1}\")
. This will include all of the commits included in the merge.Thank you for addressing this issue.
The text was updated successfully, but these errors were encountered: