We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913e4d6 commit d98ec97Copy full SHA for d98ec97
github/index.ts
@@ -720,7 +720,8 @@ function generateBranchName(type: "issue" | "pr" | "schedule") {
720
.split("T")
721
.join("")
722
if (type === "schedule") {
723
- return `opencode/scheduled-${timestamp}`
+ const hex = crypto.randomUUID().slice(0, 6)
724
+ return `opencode/scheduled-${hex}-${timestamp}`
725
}
726
return `opencode/${type}${useIssueId()}-${timestamp}`
727
0 commit comments