From b8fc6e4365e42bb72508e3555e727e0ce0abe5d5 Mon Sep 17 00:00:00 2001 From: Erin Millard Date: Sun, 20 Aug 2023 16:16:50 +1000 Subject: [PATCH] Fix post-upgrade command name --- repos-action.tf | 4 ++-- repos-template.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/repos-action.tf b/repos-action.tf index 72ae863..d6ba280 100644 --- a/repos-action.tf +++ b/repos-action.tf @@ -14,7 +14,7 @@ module "repo_github_release_from_tag" { ci_workflows = ["action"] release_action_version = "main" - renovate_post_upgrade_command = "npm run renovate-post-update" + renovate_post_upgrade_command = "npm run renovate-post-upgrade" has_discussions = true has_release_discussions = true @@ -34,7 +34,7 @@ module "repo_dependabot_automation" { ] ci_workflows = ["action"] - renovate_post_upgrade_command = "npm run renovate-post-update" + renovate_post_upgrade_command = "npm run renovate-post-upgrade" has_discussions = true diff --git a/repos-template.tf b/repos-template.tf index d280396..cde369d 100644 --- a/repos-template.tf +++ b/repos-template.tf @@ -4,7 +4,7 @@ module "repo_action_template" { description = "A template repo for creating GitHub Actions" ci_workflows = ["action"] - renovate_post_upgrade_command = "npm run renovate-post-update" + renovate_post_upgrade_command = "npm run renovate-post-upgrade" is_template = true }