use the repository-specific issue index instead of the global issue ID. #2

Merged
STACKITGit merged 1 commit from stackit into main 2026-04-23 12:25:27 +00:00

View file

@ -111,7 +111,7 @@ func (a *approvalEnvironment) createApprovalIssue(_ context.Context) error {
}
a.approvalIssue = created
a.approvalIssueNumber = int(created.ID)
a.approvalIssueNumber = int(created.Index)
fmt.Printf("Issue created: %s\n", a.approvalIssue.HTMLURL)
return nil