From 33be6eba2c87fee6b3ca0892155ad73c09940f79 Mon Sep 17 00:00:00 2001 From: qawolf-bot Date: Wed, 19 Jun 2024 10:50:39 +0000 Subject: [PATCH] Revision dce02a7 --- dist/index.js | 2 +- src/getEnvironmentIdForBranch.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 647c5e4..e8089c0 100644 --- a/dist/index.js +++ b/dist/index.js @@ -59111,7 +59111,7 @@ async function getBranchIdIdForGitBranch({ gitBranch, log, qawolfApiKey, }) { variables: { where: { deployment_branches: { - contains: gitBranch, + equals: gitBranch, }, }, }, diff --git a/src/getEnvironmentIdForBranch.ts b/src/getEnvironmentIdForBranch.ts index b6eee0c..bce080c 100644 --- a/src/getEnvironmentIdForBranch.ts +++ b/src/getEnvironmentIdForBranch.ts @@ -28,7 +28,7 @@ export async function getBranchIdIdForGitBranch({ variables: { where: { deployment_branches: { - contains: gitBranch, + equals: gitBranch, }, }, },