Skip to content

Commit 0d7a1b6

Browse files
author
Steven Silvester
committed
skip second check changelog during check release action
1 parent 3485d6d commit 0d7a1b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jupyter_releaser/actions/draft_release.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@
6363
run("jupyter-releaser check-manifest")
6464
run("jupyter-releaser check-links")
6565
run("jupyter-releaser tag-release")
66+
6667
# Run check changelog again to make sure no new PRs have been merged
67-
run("jupyter-releaser check-changelog")
68+
# Skip if this is a check_release job
69+
if not check_release:
70+
run("jupyter-releaser check-changelog")
71+
6872
run("jupyter-releaser draft-release")

0 commit comments

Comments
 (0)