From ba0d0dc9ab9a7dcda6e525b8a116dbc9d989dfd9 Mon Sep 17 00:00:00 2001 From: ldraney Date: Wed, 8 May 2024 15:29:57 -0600 Subject: [PATCH] updated bloat --- .github/scripts/prData.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/prData.js b/.github/scripts/prData.js index 4eb6d5a675..a1b62a71c2 100644 --- a/.github/scripts/prData.js +++ b/.github/scripts/prData.js @@ -83,7 +83,7 @@ function processLabelsAndVersion(labels, currentVersion) { // all other labels are a minor bump versionParts[1] += 1; versionParts[2] = 0; - appliedLabel = labels.find((label) => label).name; // Catch-all increment + appliedLabel = labels[0].name; // Assumes only one label was used, as is currently our process } // newVersion is in the format X.X.X