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

chore: rename Apache Wicket to Mendix #169

Closed
wants to merge 1 commit into from
Closed
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
16 changes: 8 additions & 8 deletions apache-wicket.tf → mendix.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "github_repository" "apache-wicket" {
name = "apache-wicket"
description = "NL Design System Apache Wicket packages"
resource "github_repository" "mendix" {
name = "mendix"
description = "NL Design System Mendix demo project"
allow_merge_commit = false
allow_rebase_merge = true
allow_squash_merge = true
Expand All @@ -11,7 +11,7 @@ resource "github_repository" "apache-wicket" {
has_projects = false
has_wiki = false
vulnerability_alerts = true
homepage_url = "https://nl-design-system.github.io/apache-wicket/"
homepage_url = "https://nl-design-system.github.io/mendix/"
squash_merge_commit_title = "PR_TITLE"
squash_merge_commit_message = "PR_BODY"
topics = ["nl-design-system"]
Expand All @@ -34,9 +34,9 @@ resource "github_repository" "apache-wicket" {
}
}

resource "github_repository_ruleset" "apache-wicket-main" {
resource "github_repository_ruleset" "mendix-main" {
name = "main"
repository = github_repository.apache-wicket.name
repository = github_repository.mendix.name
target = "branch"
enforcement = "active"

Expand Down Expand Up @@ -78,8 +78,8 @@ resource "github_repository_ruleset" "apache-wicket-main" {
}
}

resource "github_repository_collaborators" "apache-wicket" {
repository = github_repository.apache-wicket.name
resource "github_repository_collaborators" "mendix" {
repository = github_repository.mendix.name

team {
permission = "admin"
Expand Down