Skip to content

Commit d03b9a9

Browse files
committed
fix(transfer): dont create labels if missing
This is quite annoying if the target repo doesn't need those labels, or have a completely different label management approach.
1 parent 0400514 commit d03b9a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ impl Issue {
10551055
.graphql_query(
10561056
"mutation ($issueId: ID!, $repoId: ID!) {
10571057
transferIssue(
1058-
input: {createLabelsIfMissing: true, issueId: $issueId, repositoryId: $repoId}
1058+
input: {createLabelsIfMissing: false, issueId: $issueId, repositoryId: $repoId}
10591059
) {
10601060
issue {
10611061
id

0 commit comments

Comments
 (0)