File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments