Compare commits
1 commit
main
...
trstringer
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
36e099bf8b |
1 changed files with 8 additions and 0 deletions
|
|
@ -57,6 +57,14 @@ Respond %s to continue workflow or %s to cancel.`,
|
||||||
formatAcceptedWords(deniedWords),
|
formatAcceptedWords(deniedWords),
|
||||||
)
|
)
|
||||||
var err error
|
var err error
|
||||||
|
fmt.Printf(
|
||||||
|
"Creating issue in repo %s/%s with the following content:\nTitle: %s\nApprovers: %s\nBody:\n%s",
|
||||||
|
a.repoOwner,
|
||||||
|
a.repo,
|
||||||
|
issueTitle,
|
||||||
|
a.approvers,
|
||||||
|
issueBody,
|
||||||
|
)
|
||||||
a.approvalIssue, _, err = a.client.Issues.Create(ctx, a.repoOwner, a.repo, &github.IssueRequest{
|
a.approvalIssue, _, err = a.client.Issues.Create(ctx, a.repoOwner, a.repo, &github.IssueRequest{
|
||||||
Title: &issueTitle,
|
Title: &issueTitle,
|
||||||
Body: &issueBody,
|
Body: &issueBody,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue