From 8f8004b869665fb2110275273dd9d861c9d872d1 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Thu, 24 Mar 2022 19:06:27 -0400 Subject: [PATCH 1/2] Only release semver tags We need to create multiple tags for the same commit so that go can resolve the webhook module. We don't need to run CI on those tags. Otherwise we'll get an error from the release script like https://github.com/vmware-tanzu/cartographer-conventions/runs/5684344434?check_suite_focus=true Signed-off-by: Scott Andrews --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e7c74096..541c30d9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,8 @@ on: - 'main' - '!dependabot/**' tags: - - '**' + # semver tags + - 'v[0-9]+.[0-9]+.[0-9]+-?**' pull_request: {} jobs: From 06eed7608a0d3a55cb998fa4bc2578f87a295c0e Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Wed, 30 Mar 2022 12:17:52 -0400 Subject: [PATCH 2/2] review feedback Signed-off-by: Scott Andrews --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 541c30d9..3480b9db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ on: - '!dependabot/**' tags: # semver tags - - 'v[0-9]+.[0-9]+.[0-9]+-?**' + - 'v[0-9]+\.[0-9]+\.[0-9]+-?**' pull_request: {} jobs: