Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
78bf80f
Bump Submodule/github/rest-api-description from `d5aff63` to `758e552`
dependabot[bot] Apr 3, 2026
ed4822a
Commit via running: make Sources/actions
dependabot[bot] Apr 8, 2026
adbd96c
Commit via running: make Sources/activity
dependabot[bot] Apr 8, 2026
00f5d0e
Commit via running: make Sources/apps
dependabot[bot] Apr 8, 2026
88c694f
Commit via running: make Sources/checks
dependabot[bot] Apr 8, 2026
41043cf
Commit via running: make Sources/code-scanning
dependabot[bot] Apr 8, 2026
b12d287
Commit via running: make Sources/dependabot
dependabot[bot] Apr 8, 2026
7e12bc8
Commit via running: make Sources/issues
dependabot[bot] Apr 8, 2026
795bdfc
Commit via running: make Sources/migrations
dependabot[bot] Apr 8, 2026
248fbec
Commit via running: make Sources/oidc
dependabot[bot] Apr 8, 2026
c8b852a
Commit via running: make Sources/orgs
dependabot[bot] Apr 8, 2026
d8cb7ac
Commit via running: make Sources/packages
dependabot[bot] Apr 8, 2026
9e4843b
Commit via running: make Sources/pulls
dependabot[bot] Apr 8, 2026
54de22c
Commit via running: make Sources/repos
dependabot[bot] Apr 8, 2026
73cd2b6
Commit via running: make Sources/search
dependabot[bot] Apr 8, 2026
1da21a8
Commit via running: make Sources/secret-scanning
dependabot[bot] Apr 8, 2026
ba299f7
Commit via running: make Sources/teams
dependabot[bot] Apr 8, 2026
668649b
Commit via running: make Sources/codespaces
dependabot[bot] Apr 8, 2026
974f97c
Commit via running: make Sources/copilot
dependabot[bot] Apr 8, 2026
dea04bf
Commit via running: make Sources/security-advisories
dependabot[bot] Apr 8, 2026
35b714a
Commit via running: make Sources/private-registries
dependabot[bot] Apr 8, 2026
1b7f8c6
Commit via running: make Sources/hosted-compute
dependabot[bot] Apr 8, 2026
ea9f7bf
Commit via running: make Sources/credentials
dependabot[bot] Apr 8, 2026
4aa135e
Commit via running: make Sources/projects
dependabot[bot] Apr 8, 2026
a56db61
Commit via running: make Sources/agent-tasks
dependabot[bot] Apr 8, 2026
ca1fb95
Commit via running: make Package.swift
dependabot[bot] Apr 8, 2026
04d2d9f
Commit via running: make .spi.yml
dependabot[bot] Apr 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .spi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ builder:
- documentation_targets:
- GitHubRestAPIActions
- GitHubRestAPIActivity
- GitHubRestAPIAgent_Tasks
- GitHubRestAPIApps
- GitHubRestAPIBilling
- GitHubRestAPICampaigns
Expand Down
9 changes: 9 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ let package = Package(
products: [
.library(name: "GitHubRestAPIActions", targets: ["GitHubRestAPIActions"]),
.library(name: "GitHubRestAPIActivity", targets: ["GitHubRestAPIActivity"]),
.library(name: "GitHubRestAPIAgent_Tasks", targets: ["GitHubRestAPIAgent_Tasks"]),
.library(name: "GitHubRestAPIApps", targets: ["GitHubRestAPIApps"]),
.library(name: "GitHubRestAPIBilling", targets: ["GitHubRestAPIBilling"]),
.library(name: "GitHubRestAPICampaigns", targets: ["GitHubRestAPICampaigns"]),
Expand Down Expand Up @@ -79,6 +80,14 @@ let package = Package(
],
path: "Sources/activity"
),
.target(
name: "GitHubRestAPIAgent_Tasks",
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession"),
],
path: "Sources/agent-tasks"
),
.target(
name: "GitHubRestAPIApps",
dependencies: [
Expand Down
14 changes: 0 additions & 14 deletions Sources/actions/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6209,10 +6209,6 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/repository/pull_request_creation_policy`.
public var pullRequestCreationPolicy: Components.Schemas.Repository.PullRequestCreationPolicyPayload?
/// Whether commit comments are enabled.
///
/// - Remark: Generated from `#/components/schemas/repository/has_commit_comments`.
public var hasCommitComments: Swift.Bool?
/// Whether the repository is archived.
///
/// - Remark: Generated from `#/components/schemas/repository/archived`.
Expand Down Expand Up @@ -6460,7 +6456,6 @@ public enum Components {
/// - hasDiscussions: Whether discussions are enabled.
/// - hasPullRequests: Whether pull requests are enabled.
/// - pullRequestCreationPolicy: The policy controlling who can create pull requests: all or collaborators_only.
/// - hasCommitComments: Whether commit comments are enabled.
/// - archived: Whether the repository is archived.
/// - disabled: Returns whether or not this repository disabled.
/// - visibility: The repository visibility: public, private, or internal.
Expand Down Expand Up @@ -6560,7 +6555,6 @@ public enum Components {
hasDiscussions: Swift.Bool? = nil,
hasPullRequests: Swift.Bool? = nil,
pullRequestCreationPolicy: Components.Schemas.Repository.PullRequestCreationPolicyPayload? = nil,
hasCommitComments: Swift.Bool? = nil,
archived: Swift.Bool,
disabled: Swift.Bool,
visibility: Swift.String? = nil,
Expand Down Expand Up @@ -6660,7 +6654,6 @@ public enum Components {
self.hasDiscussions = hasDiscussions
self.hasPullRequests = hasPullRequests
self.pullRequestCreationPolicy = pullRequestCreationPolicy
self.hasCommitComments = hasCommitComments
self.archived = archived
self.disabled = disabled
self.visibility = visibility
Expand Down Expand Up @@ -6761,7 +6754,6 @@ public enum Components {
case hasDiscussions = "has_discussions"
case hasPullRequests = "has_pull_requests"
case pullRequestCreationPolicy = "pull_request_creation_policy"
case hasCommitComments = "has_commit_comments"
case archived
case disabled
case visibility
Expand Down Expand Up @@ -7751,8 +7743,6 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/minimal-repository/pull_request_creation_policy`.
public var pullRequestCreationPolicy: Components.Schemas.MinimalRepository.PullRequestCreationPolicyPayload?
/// - Remark: Generated from `#/components/schemas/minimal-repository/has_commit_comments`.
public var hasCommitComments: Swift.Bool?
/// - Remark: Generated from `#/components/schemas/minimal-repository/archived`.
public var archived: Swift.Bool?
/// - Remark: Generated from `#/components/schemas/minimal-repository/disabled`.
Expand Down Expand Up @@ -7971,7 +7961,6 @@ public enum Components {
/// - hasDiscussions:
/// - hasPullRequests:
/// - pullRequestCreationPolicy: The policy controlling who can create pull requests: all or collaborators_only.
/// - hasCommitComments:
/// - archived:
/// - disabled:
/// - visibility:
Expand Down Expand Up @@ -8063,7 +8052,6 @@ public enum Components {
hasDiscussions: Swift.Bool? = nil,
hasPullRequests: Swift.Bool? = nil,
pullRequestCreationPolicy: Components.Schemas.MinimalRepository.PullRequestCreationPolicyPayload? = nil,
hasCommitComments: Swift.Bool? = nil,
archived: Swift.Bool? = nil,
disabled: Swift.Bool? = nil,
visibility: Swift.String? = nil,
Expand Down Expand Up @@ -8155,7 +8143,6 @@ public enum Components {
self.hasDiscussions = hasDiscussions
self.hasPullRequests = hasPullRequests
self.pullRequestCreationPolicy = pullRequestCreationPolicy
self.hasCommitComments = hasCommitComments
self.archived = archived
self.disabled = disabled
self.visibility = visibility
Expand Down Expand Up @@ -8248,7 +8235,6 @@ public enum Components {
case hasDiscussions = "has_discussions"
case hasPullRequests = "has_pull_requests"
case pullRequestCreationPolicy = "pull_request_creation_policy"
case hasCommitComments = "has_commit_comments"
case archived
case disabled
case visibility
Expand Down
20 changes: 0 additions & 20 deletions Sources/activity/Types.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1659,10 +1659,6 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/repository/pull_request_creation_policy`.
public var pullRequestCreationPolicy: Components.Schemas.Repository.PullRequestCreationPolicyPayload?
/// Whether commit comments are enabled.
///
/// - Remark: Generated from `#/components/schemas/repository/has_commit_comments`.
public var hasCommitComments: Swift.Bool?
/// Whether the repository is archived.
///
/// - Remark: Generated from `#/components/schemas/repository/archived`.
Expand Down Expand Up @@ -1910,7 +1906,6 @@ public enum Components {
/// - hasDiscussions: Whether discussions are enabled.
/// - hasPullRequests: Whether pull requests are enabled.
/// - pullRequestCreationPolicy: The policy controlling who can create pull requests: all or collaborators_only.
/// - hasCommitComments: Whether commit comments are enabled.
/// - archived: Whether the repository is archived.
/// - disabled: Returns whether or not this repository disabled.
/// - visibility: The repository visibility: public, private, or internal.
Expand Down Expand Up @@ -2010,7 +2005,6 @@ public enum Components {
hasDiscussions: Swift.Bool? = nil,
hasPullRequests: Swift.Bool? = nil,
pullRequestCreationPolicy: Components.Schemas.Repository.PullRequestCreationPolicyPayload? = nil,
hasCommitComments: Swift.Bool? = nil,
archived: Swift.Bool,
disabled: Swift.Bool,
visibility: Swift.String? = nil,
Expand Down Expand Up @@ -2110,7 +2104,6 @@ public enum Components {
self.hasDiscussions = hasDiscussions
self.hasPullRequests = hasPullRequests
self.pullRequestCreationPolicy = pullRequestCreationPolicy
self.hasCommitComments = hasCommitComments
self.archived = archived
self.disabled = disabled
self.visibility = visibility
Expand Down Expand Up @@ -2211,7 +2204,6 @@ public enum Components {
case hasDiscussions = "has_discussions"
case hasPullRequests = "has_pull_requests"
case pullRequestCreationPolicy = "pull_request_creation_policy"
case hasCommitComments = "has_commit_comments"
case archived
case disabled
case visibility
Expand Down Expand Up @@ -5811,8 +5803,6 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/minimal-repository/pull_request_creation_policy`.
public var pullRequestCreationPolicy: Components.Schemas.MinimalRepository.PullRequestCreationPolicyPayload?
/// - Remark: Generated from `#/components/schemas/minimal-repository/has_commit_comments`.
public var hasCommitComments: Swift.Bool?
/// - Remark: Generated from `#/components/schemas/minimal-repository/archived`.
public var archived: Swift.Bool?
/// - Remark: Generated from `#/components/schemas/minimal-repository/disabled`.
Expand Down Expand Up @@ -6031,7 +6021,6 @@ public enum Components {
/// - hasDiscussions:
/// - hasPullRequests:
/// - pullRequestCreationPolicy: The policy controlling who can create pull requests: all or collaborators_only.
/// - hasCommitComments:
/// - archived:
/// - disabled:
/// - visibility:
Expand Down Expand Up @@ -6123,7 +6112,6 @@ public enum Components {
hasDiscussions: Swift.Bool? = nil,
hasPullRequests: Swift.Bool? = nil,
pullRequestCreationPolicy: Components.Schemas.MinimalRepository.PullRequestCreationPolicyPayload? = nil,
hasCommitComments: Swift.Bool? = nil,
archived: Swift.Bool? = nil,
disabled: Swift.Bool? = nil,
visibility: Swift.String? = nil,
Expand Down Expand Up @@ -6215,7 +6203,6 @@ public enum Components {
self.hasDiscussions = hasDiscussions
self.hasPullRequests = hasPullRequests
self.pullRequestCreationPolicy = pullRequestCreationPolicy
self.hasCommitComments = hasCommitComments
self.archived = archived
self.disabled = disabled
self.visibility = visibility
Expand Down Expand Up @@ -6308,7 +6295,6 @@ public enum Components {
case hasDiscussions = "has_discussions"
case hasPullRequests = "has_pull_requests"
case pullRequestCreationPolicy = "pull_request_creation_policy"
case hasCommitComments = "has_commit_comments"
case archived
case disabled
case visibility
Expand Down Expand Up @@ -6920,8 +6906,6 @@ public enum Components {
///
/// - Remark: Generated from `#/components/schemas/fork-event/forkee/pull_request_creation_policy`.
public var pullRequestCreationPolicy: Components.Schemas.ForkEvent.ForkeePayload.PullRequestCreationPolicyPayload?
/// - Remark: Generated from `#/components/schemas/fork-event/forkee/has_commit_comments`.
public var hasCommitComments: Swift.Bool?
/// - Remark: Generated from `#/components/schemas/fork-event/forkee/forks_count`.
public var forksCount: Swift.Int?
/// - Remark: Generated from `#/components/schemas/fork-event/forkee/mirror_url`.
Expand Down Expand Up @@ -7023,7 +7007,6 @@ public enum Components {
/// - hasDiscussions:
/// - hasPullRequests:
/// - pullRequestCreationPolicy: The policy controlling who can create pull requests: all or collaborators_only.
/// - hasCommitComments:
/// - forksCount:
/// - mirrorUrl:
/// - archived:
Expand Down Expand Up @@ -7107,7 +7090,6 @@ public enum Components {
hasDiscussions: Swift.Bool? = nil,
hasPullRequests: Swift.Bool? = nil,
pullRequestCreationPolicy: Components.Schemas.ForkEvent.ForkeePayload.PullRequestCreationPolicyPayload? = nil,
hasCommitComments: Swift.Bool? = nil,
forksCount: Swift.Int? = nil,
mirrorUrl: Swift.String? = nil,
archived: Swift.Bool? = nil,
Expand Down Expand Up @@ -7191,7 +7173,6 @@ public enum Components {
self.hasDiscussions = hasDiscussions
self.hasPullRequests = hasPullRequests
self.pullRequestCreationPolicy = pullRequestCreationPolicy
self.hasCommitComments = hasCommitComments
self.forksCount = forksCount
self.mirrorUrl = mirrorUrl
self.archived = archived
Expand Down Expand Up @@ -7276,7 +7257,6 @@ public enum Components {
case hasDiscussions = "has_discussions"
case hasPullRequests = "has_pull_requests"
case pullRequestCreationPolicy = "pull_request_creation_policy"
case hasCommitComments = "has_commit_comments"
case forksCount = "forks_count"
case mirrorUrl = "mirror_url"
case archived
Expand Down
Loading