Skip to content

Commit

Permalink
Sync config with changes from GitHub UI
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Nov 29, 2024
1 parent a10513c commit e4a1f15
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
24 changes: 15 additions & 9 deletions terraform-scripts/quarkus-fury.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Create repository
resource "github_repository" "quarkus_fury" {
name = "quarkus-fury"
description = "A blazingly fast multi-language serialization framework powered by JIT and zero-copy."
homepage_url = "https://docs.quarkiverse.io/quarkus-fury/dev"
allow_update_branch = true
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
vulnerability_alerts = true
topics = ["quarkus-extension", "fury", "serialization"]
name = "quarkus-fury"
description = "A blazingly fast multi-language serialization framework powered by JIT and zero-copy."
homepage_url = "https://docs.quarkiverse.io/quarkus-fury/dev"
allow_update_branch = true
allow_merge_commit = false
allow_rebase_merge = false
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
vulnerability_alerts = true
topics = ["quarkus-extension", "fury", "serialization"]
merge_commit_message = "PR_BODY"
merge_commit_title = "PR_TITLE"
squash_merge_commit_message = "PR_BODY"
squash_merge_commit_title = "PR_TITLE"
}

# Create team
Expand Down
2 changes: 1 addition & 1 deletion terraform-scripts/quarkus-jdiameter.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
resource "github_repository" "quarkus_jdiameter" {
name = "quarkus-jdiameter"
description = "Quarkus JDiameter extension - Diameter protocol support"
homepage_url = "https://docs.quarkiverse.io/quarkus-jdiameter/2.0.0"
homepage_url = "https://docs.quarkiverse.io/quarkus-jdiameter/dev"
allow_update_branch = true
archive_on_destroy = true
delete_branch_on_merge = true
Expand Down

0 comments on commit e4a1f15

Please sign in to comment.