Skip to content

Commit

Permalink
Merge pull request #175 from tegorov/master
Browse files Browse the repository at this point in the history
  • Loading branch information
f-meloni authored Jun 11, 2021
2 parents c7f9536 + 3c0bbe2 commit a6c0a11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
-->
## Master

- Fix body parameter in github models [@tegorov] - [#175](https://github.com/danger/kotlin/pull/175)

# 1.0.0-beta2

- Update kotlinx-datetime to 0.1.1 [@f-meloni] - [@gianluz] - [#167](https://github.com/danger/kotlin/pull/167)
Expand Down Expand Up @@ -68,3 +70,4 @@
[@anton46]: https://github.com/anton46
[@uzzu]: https://github.com/uzzu
[@mariusgreve]: https://github.com/mariusgreve
[@tegorov]: https://github.com/tegorov
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ enum class GitHubPullRequestState {
data class GitHubPR(
val number: Int,
val title: String,
val body: String,
val body: String?,
val user: GitHubUser,
val assignee: GitHubUser?,
val assignees: List<GitHubUser>,
Expand Down Expand Up @@ -247,7 +247,7 @@ data class GitHubIssue(
val user: GitHubUser,
val state: GitHubIssueState,
@SerialName("locked") val isLocked: Boolean,
val body: String,
val body: String?,
@SerialName("comments") val commentCount: Int,
val assignee: GitHubUser?,
val assignees: List<GitHubUser>,
Expand Down

0 comments on commit a6c0a11

Please sign in to comment.