-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
269 changed files
with
2,435 additions
and
2,150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/branch_protection_configuration_enabled.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookBranchProtectionConfigurationEnabled | ||
|
||
from ._base import Event | ||
|
||
|
||
class BranchProtectionConfigurationEnabled(Event): | ||
|
||
payload: WebhookBranchProtectionConfigurationEnabled |
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/branch_protection_rule_created.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookBranchProtectionRuleCreated | ||
|
||
from ._base import Event | ||
|
||
|
||
class BranchProtectionRuleCreated(Event): | ||
|
||
payload: WebhookBranchProtectionRuleCreated |
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/branch_protection_rule_deleted.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookBranchProtectionRuleDeleted | ||
|
||
from ._base import Event | ||
|
||
|
||
class BranchProtectionRuleDeleted(Event): | ||
|
||
payload: WebhookBranchProtectionRuleDeleted |
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/branch_protection_rule_edited.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookBranchProtectionRuleEdited | ||
|
||
from ._base import Event | ||
|
||
|
||
class BranchProtectionRuleEdited(Event): | ||
|
||
payload: WebhookBranchProtectionRuleEdited |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckRunCompleted | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckRunCompleted(Event): | ||
|
||
payload: WebhookCheckRunCompleted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckRunCreated | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckRunCreated(Event): | ||
|
||
payload: WebhookCheckRunCreated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckRunRequestedAction | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckRunRequestedAction(Event): | ||
|
||
payload: WebhookCheckRunRequestedAction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckRunRerequested | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckRunRerequested(Event): | ||
|
||
payload: WebhookCheckRunRerequested |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckSuiteCompleted | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckSuiteCompleted(Event): | ||
|
||
payload: WebhookCheckSuiteCompleted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckSuiteRequested | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckSuiteRequested(Event): | ||
|
||
payload: WebhookCheckSuiteRequested |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCheckSuiteRerequested | ||
|
||
from ._base import Event | ||
|
||
|
||
class CheckSuiteRerequested(Event): | ||
|
||
payload: WebhookCheckSuiteRerequested |
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/code_scanning_alert_appeared_in_branch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCodeScanningAlertAppearedInBranch | ||
|
||
from ._base import Event | ||
|
||
|
||
class CodeScanningAlertAppearedInBranch(Event): | ||
|
||
payload: WebhookCodeScanningAlertAppearedInBranch |
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/code_scanning_alert_closed_by_user.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCodeScanningAlertClosedByUser | ||
|
||
from ._base import Event | ||
|
||
|
||
class CodeScanningAlertClosedByUser(Event): | ||
|
||
payload: WebhookCodeScanningAlertClosedByUser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCodeScanningAlertCreated | ||
|
||
from ._base import Event | ||
|
||
|
||
class CodeScanningAlertCreated(Event): | ||
|
||
payload: WebhookCodeScanningAlertCreated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCodeScanningAlertFixed | ||
|
||
from ._base import Event | ||
|
||
|
||
class CodeScanningAlertFixed(Event): | ||
|
||
payload: WebhookCodeScanningAlertFixed |
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/code_scanning_alert_reopened.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCodeScanningAlertReopened | ||
|
||
from ._base import Event | ||
|
||
|
||
class CodeScanningAlertReopened(Event): | ||
|
||
payload: WebhookCodeScanningAlertReopened |
8 changes: 8 additions & 0 deletions
8
nonebot/adapters/github/event/code_scanning_alert_reopened_by_user.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from githubkit.versions.latest.models import WebhookCodeScanningAlertReopenedByUser | ||
|
||
from ._base import Event | ||
|
||
|
||
class CodeScanningAlertReopenedByUser(Event): | ||
|
||
payload: WebhookCodeScanningAlertReopenedByUser |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.