Skip to content

Commit 6aafce3

Browse files
fix(CORE-2259): update git command in ticket_status.sh for consistency
1 parent db14bb2 commit 6aafce3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/tag-jira-release/ticket_status.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function getTicketInfo() {
5050

5151
function hasSkipReleaseNotes() {
5252
commitHash=$1
53-
LOG=$($GIT_CMD show $commitHash | sed '/^diff/,$d')
53+
LOG=$(git show $commitHash | sed '/^diff/,$d')
5454
if [[ "$LOG" =~ \[skip-release-notes\] ]]; then
5555
echo -n ",\"skip-release-notes\":true"
5656
fi

0 commit comments

Comments
 (0)