Skip to content

Commit b2f5d1a

Browse files
authored
chore: adds PullRequestUnlabeledEvent (#609)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed
1 parent 61f6145 commit b2f5d1a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/codegen/extensions/github/types/events/pull_request.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,15 @@ class PullRequestOpenedEvent(BaseModel):
2929
enterprise: GitHubEnterprise
3030
sender: GitHubUser
3131
installation: GitHubInstallation
32+
33+
34+
class PullRequestUnlabeledEvent(BaseModel):
35+
action: str
36+
number: int
37+
pull_request: PullRequest
38+
label: GitHubLabel
39+
repository: GitHubRepository
40+
organization: GitHubOrganization
41+
enterprise: GitHubEnterprise
42+
sender: GitHubUser
43+
installation: GitHubInstallation

0 commit comments

Comments
 (0)