Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync config with changes from GitHub UI #310

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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