Merge pull request #2673 from areifert/misc/make-azure-devops-variables-secret

Make synced Azure DevOps variables secret
This commit is contained in:
BlackMagiq
2024-10-31 20:39:59 -07:00
committed by GitHub

View File

@@ -2540,9 +2540,9 @@ const syncSecretsAzureDevops = async ({
const { groupId, groupName } = await getEnvGroupId(integration.app, integration.appId, integration.environment.name);
const variables: Record<string, { value: string }> = {};
const variables: Record<string, { value: string, isSecret: boolean }> = {};
for (const key of Object.keys(secrets)) {
variables[key] = { value: secrets[key].value };
variables[key] = { value: secrets[key].value, isSecret: true };
}
if (!groupId) {