Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 6a803df

Browse files
authored
fix: tag releases before opening new pull requests (#753)
Fixes #747
1 parent 6730d1a commit 6a803df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@ async function runManifest (command) {
6262
fork
6363
}
6464
)
65-
// Create or update release PRs:
66-
outputPRs(await manifest.createPullRequests())
6765
if (command !== 'manifest-pr') {
66+
outputReleases(await manifest.createReleases())
6867
manifest = await Manifest.fromManifest(
6968
github,
7069
github.repository.defaultBranch,
@@ -75,8 +74,9 @@ async function runManifest (command) {
7574
fork
7675
}
7776
)
78-
outputReleases(await manifest.createReleases())
7977
}
78+
// Create or update release PRs:
79+
outputPRs(await manifest.createPullRequests())
8080
}
8181

8282
async function main () {

0 commit comments

Comments
 (0)