X Tutup
Skip to content

Commit 83a6ccc

Browse files
authored
Add interactive repository edit functionality (cli#4895)
1 parent d4ead71 commit 83a6ccc

File tree

3 files changed

+495
-31
lines changed

3 files changed

+495
-31
lines changed

api/queries_repo.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ type Repository struct {
4646
MergeCommitAllowed bool
4747
SquashMergeAllowed bool
4848
RebaseMergeAllowed bool
49+
AutoMergeAllowed bool
4950

5051
ForkCount int
5152
StargazerCount int
@@ -68,6 +69,7 @@ type Repository struct {
6869
IsArchived bool
6970
IsEmpty bool
7071
IsFork bool
72+
ForkingAllowed bool
7173
IsInOrganization bool
7274
IsMirror bool
7375
IsPrivate bool
@@ -81,6 +83,7 @@ type Repository struct {
8183
ViewerPermission string
8284
ViewerPossibleCommitEmails []string
8385
ViewerSubscription string
86+
Visibility string
8487

8588
RepositoryTopics struct {
8689
Nodes []struct {

0 commit comments

Comments
 (0)
X Tutup