Skip to content

Commit

Permalink
add back HasDiscussions
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <bcallaway@google.com>
  • Loading branch information
bobcallaway committed Jan 29, 2024
1 parent 8072aa9 commit 673fb33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ func main() {
AllowSquashMerge: pulumi.Bool(repo.AllowSquashMerge),
AutoInit: pulumi.Bool(repo.AutoInit),
DeleteBranchOnMerge: pulumi.Bool(repo.DeleteBranchOnMerge),
HasDiscussions: pulumi.Bool(repo.HasDiscussions),
HasDownloads: pulumi.Bool(repo.HasDownloads),
HasIssues: pulumi.Bool(repo.HasIssues),
HasProjects: pulumi.Bool(repo.HasProjects),
Expand Down
1 change: 1 addition & 0 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ type Repository struct {
Archived bool `yaml:"archived"`
AutoInit bool `yaml:"autoInit"`
DeleteBranchOnMerge bool `yaml:"deleteBranchOnMerge"`
HasDiscussions bool `yaml:"hasDiscussions"`
HasDownloads bool `yaml:"hasDownloads"`
HasIssues bool `yaml:"hasIssues"`
HasProjects bool `yaml:"hasProjects"`
Expand Down

0 comments on commit 673fb33

Please sign in to comment.