Skip to content

Commit

Permalink
Move several repos to 'main' as default branch
Browse files Browse the repository at this point in the history
  • Loading branch information
torbencarstens committed Sep 24, 2023
1 parent 4cd98a1 commit 046e060
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion repo_data.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "data_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "data"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = []
}
2 changes: 1 addition & 1 deletion repo_graphing.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "graphing_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "graphing"
enable_actions = false
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = [
"lint",
Expand Down
2 changes: 1 addition & 1 deletion repo_k8s-config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "k8s_config_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "k8s-config"
description = "config repo for ConfigMaps and Secrets"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = [
"lint",
Expand Down
2 changes: 1 addition & 1 deletion repo_preliminary-frontend.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "preliminary_frontend_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "preliminary-frontend"
homepage_url = "https://woog.life"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = [
"lint",
Expand Down
2 changes: 1 addition & 1 deletion repo_r-base.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "r_base_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "r-base"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = []
}
2 changes: 1 addition & 1 deletion repo_telegram-bot.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "telegram_bot_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "telegram-bot"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = [
"lint",
Expand Down
2 changes: 1 addition & 1 deletion repo_telegram-updater.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "telegram_updater_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "telegram-updater"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = []
}
2 changes: 1 addition & 1 deletion repo_tweeter.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "tweeter_repo" {
source = "github.com/BlindfoldedSurgery/terraform-repo-module"
name = "tweeter"
description = "Tweets the woog temperature every 2 hours (1 */2)"
default_branch_name = "master"
default_branch_name = "main"
blocked_branches = []
required_status_checks = []
}

0 comments on commit 046e060

Please sign in to comment.