From 2506abb36897c1484c7f993848ae2cf1c57477ed Mon Sep 17 00:00:00 2001 From: Ramon Niebla Date: Tue, 27 Jan 2026 19:59:32 +0000 Subject: [PATCH] Simplify release workflow secrets configuration Remove unused SSM parameters from the release workflow to streamline secret retrieval. This removes the following token references that are no longer needed: - CIRCLECI_CLI_TOKEN - BITBUCKET_USERNAME - BITBUCKET_TOKEN - GITHUB_RELEASE_TOKEN (via SSM) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09fd3f5e..9c3deb69 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0 with: aws_assume_role: ${{ vars.AWS_ROLE_ARN }} - ssm_parameter_pairs: '/global/services/docker/public/username = DOCKER_USERNAME, /global/services/docker/public/token = DOCKER_TOKEN, /production/common/releasing/circleci/orb-token= CIRCLECI_CLI_TOKEN, /production/common/releasing/bitbucket/username = BITBUCKET_USERNAME, /production/common/releasing/bitbucket/token = BITBUCKET_TOKEN, /production/common/releasing/ld-find-code-refs/github-release-token = GITHUB_RELEASE_TOKEN' + ssm_parameter_pairs: '/global/services/docker/public/username = DOCKER_USERNAME, /global/services/docker/public/token = DOCKER_TOKEN - name: set release token run: echo "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN" >> $GITHUB_ENV - name: setup access for find-code-references