From 046e0608cce705fc3b71914cb2a8f1547d84d33a Mon Sep 17 00:00:00 2001 From: Torben Carstens Date: Sun, 24 Sep 2023 14:18:27 +0200 Subject: [PATCH] Move several repos to 'main' as default branch --- repo_data.tf | 2 +- repo_graphing.tf | 2 +- repo_k8s-config.tf | 2 +- repo_preliminary-frontend.tf | 2 +- repo_r-base.tf | 2 +- repo_telegram-bot.tf | 2 +- repo_telegram-updater.tf | 2 +- repo_tweeter.tf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/repo_data.tf b/repo_data.tf index cf736d6..01c7c31 100644 --- a/repo_data.tf +++ b/repo_data.tf @@ -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 = [] } diff --git a/repo_graphing.tf b/repo_graphing.tf index 7a6ac1c..2eb1304 100644 --- a/repo_graphing.tf +++ b/repo_graphing.tf @@ -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", diff --git a/repo_k8s-config.tf b/repo_k8s-config.tf index 133d05f..6fe95b2 100644 --- a/repo_k8s-config.tf +++ b/repo_k8s-config.tf @@ -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", diff --git a/repo_preliminary-frontend.tf b/repo_preliminary-frontend.tf index 872b251..a764fde 100644 --- a/repo_preliminary-frontend.tf +++ b/repo_preliminary-frontend.tf @@ -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", diff --git a/repo_r-base.tf b/repo_r-base.tf index e34e49e..4ef9116 100644 --- a/repo_r-base.tf +++ b/repo_r-base.tf @@ -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 = [] } diff --git a/repo_telegram-bot.tf b/repo_telegram-bot.tf index b172d52..89f85b7 100644 --- a/repo_telegram-bot.tf +++ b/repo_telegram-bot.tf @@ -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", diff --git a/repo_telegram-updater.tf b/repo_telegram-updater.tf index a26230b..21a290e 100644 --- a/repo_telegram-updater.tf +++ b/repo_telegram-updater.tf @@ -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 = [] } diff --git a/repo_tweeter.tf b/repo_tweeter.tf index 1a293f9..cc4a271 100644 --- a/repo_tweeter.tf +++ b/repo_tweeter.tf @@ -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 = [] }