-
Notifications
You must be signed in to change notification settings - Fork 0
Migrate create-pr to ziro-cli #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate create-pr to ziro-cli #36
Conversation
| fun fromJson(reader: JsonReader, customScalarAdapters: CustomScalarAdapters): URI { | ||
| return URI(reader.nextString()!!) | ||
| } | ||
|
|
||
| fun toJson(writer: JsonWriter, customScalarAdapters: CustomScalarAdapters, value: URI) { | ||
| writer.value(value.toString()) | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these are needed to support one of the new queries
| # No need to get all pages as issues don't realistically have >100 | ||
| connectedPrs(first: 5) { | ||
| nodes { | ||
| id | ||
| number | ||
| state | ||
| htmlUrl | ||
| pullRequestObject { | ||
| state | ||
| } | ||
| repository { | ||
| name | ||
| } | ||
| assignees { | ||
| nodes { | ||
| login | ||
| } | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no longer pull in PR info as part of the issue because these will be fetched separately as part of the pull request model
gradle.properties
Outdated
| @@ -1 +1,2 @@ | |||
| kotlin.code.style=official | |||
| ziro.cli.version=21255_migrate-create-pr-to-ziro-cli | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will change this to the proper version before merge
See #21255
QA
None for this PR.