From aedb2da1ff18cfcfdd0802b264f7e105169038e2 Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Wed, 11 Mar 2026 09:23:31 -0400 Subject: [PATCH] use is_ent_branch (#12672) (#12685) Co-authored-by: Matthew Irish <39469+meirish@users.noreply.github.com> --- .github/actions/metadata/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/metadata/action.yml b/.github/actions/metadata/action.yml index 8556a866c9..70801142eb 100644 --- a/.github/actions/metadata/action.yml +++ b/.github/actions/metadata/action.yml @@ -156,6 +156,7 @@ runs: if [ "$is_enterprise_repo" = 'true' ]; then base_ref='${{ github.event.pull_request.base.ref || github.event.base_ref || github.ref_name || github.event.branch || github.ref }}' is_ent_repo='true' + is_ent_branch='true' is_ce_in_enterprise=$([[ $base_ref == ce/* ]] && echo "true" || echo "false") if [ "$is_ce_in_enterprise" = 'true' ]; then is_enterprise="false" @@ -192,7 +193,7 @@ runs: echo "compute-small=${compute_small}" echo "go-tags=${go_tags}" echo "is-ce-in-enterprise=${is_ce_in_enterprise}" - echo "is-ent-branch=${is_enterprise}" + echo "is-ent-branch=${is_ent_branch}" echo "is-ent-repo=${is_ent_repo}" echo "vault-version-metadata=${version_metadata}" } | tee -a "$GITHUB_OUTPUT"