We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a748809 commit 1b30abdCopy full SHA for 1b30abd
1 file changed
.github/workflows/PublishReleaseNotes.yml
@@ -689,7 +689,7 @@ jobs:
689
# Search PR with that SHA
690
# Load description of that PR
691
printf "Read second parent of current SHA (%s) ... " "${{ github.ref }}"
692
- FATHER_SHA=$(git rev-parse ${{ github.ref }}^2 -- 2> /dev/null)
+ FATHER_SHA=$(git rev-parse ${{ github.ref }}^2 2> /dev/null)
693
if [[ $? -ne 0 || "{FATHER_SHA}" == "" ]]; then
694
printf "${ANSI_LIGHT_RED}[FAILED]${ANSI_NOCOLOR}\n"
695
printf "→ ${ANSI_LIGHT_YELLOW}Skipped readout of pull request description. This is not a merge commit.${ANSI_NOCOLOR}\n"
0 commit comments