Skip to content

Commit 503fbef

Browse files
chore: [DevOps] Release notes warning update (#617)
1 parent fc474a0 commit 503fbef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/prepare-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ jobs:
201201
run: |
202202
PR_TITLE="Java: Add release notes for release ${{ needs.bump-version.outputs.release-version }}"
203203
204-
# if the minor version is a multiple of 15, then change the PR_BODY to "# ⚠️Update the `docs-java/release-notes/index.jsx` file⚠️"
204+
# if the minor version is a multiple of 15, then change the PR_BODY to "# ⚠️Update the `docs-java/release-notes.mdx` file⚠️"
205205
# else the PR_BODY will be "Add the SAP Cloud SDK ${{ needs.bump-version.outputs.release-version }} release notes"
206206
207207
minor_version=$(echo ${{ needs.bump-version.outputs.release-version }} | cut -d '.' -f 2)
208208
if [[ $((minor_version % 15)) -eq 0 ]]; then
209-
PR_BODY="# ⚠️Update the \`docs-java/release-notes/index.jsx\` file⚠️"
209+
PR_BODY="# ⚠️Update the \`docs-java/release-notes.mdx\` file⚠️"
210210
else
211211
PR_BODY="Add the SAP Cloud SDK ${{ needs.bump-version.outputs.release-version }} release notes"
212212
fi

0 commit comments

Comments
 (0)