Skip to content

Commit ed0e817

Browse files
committed
update script
1 parent 2dd9772 commit ed0e817

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

scripts/release.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,19 @@ cp -f "site/static/javadoc/${MVN_VERSION_RELEASE}.tgz" "site/static/javadoc/late
264264
git add --all
265265
git commit -s -a -m "javadocs for ${MVN_VERSION_RELEASE}"
266266
git push --set-upstream origin "${RELEASE_NOTES_BRANCH}"
267-
gh pr create -B main --title "${RELEASE_NOTES_BRANCH}" --body "Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.\n\n - [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/) finished publishing the release\n - [ ] remember to also [add the release here on GitHub](https://github.com/eclipse-rdf4j/rdf4j/releases/new?tag=${MVN_VERSION_RELEASE}&title=RDF4JRDF4J%20${MVN_VERSION_RELEASE}) (include announcement)"
267+
BODY_CONTENT=$(cat <<EOF
268+
Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.
269+
270+
- [ ] check that downloads.md is updated
271+
- [ ] check that the release notes file is updated
272+
- [ ] check that the news item file is updated
273+
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-ossrh/) finished publishing the release
274+
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-sdk/) finished publishing the sdk
275+
- [ ] remember to also [add the release here on GitHub](https://github.com/eclipse-rdf4j/rdf4j/releases/new?tag=${MVN_VERSION_RELEASE}&title=RDF4J%20${MVN_VERSION_RELEASE}) (include announcement)
276+
EOF
277+
)
278+
279+
gh pr create -B main --title "${MVN_VERSION_RELEASE} release notes" --body "$BODY_CONTENT"
268280

269281
echo "Javadocs are in git branch ${RELEASE_NOTES_BRANCH}"
270282

0 commit comments

Comments
 (0)