aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/check-recipe-version-bump/index.js
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/check-recipe-version-bump/index.js')
-rw-r--r--.github/workflows/check-recipe-version-bump/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/check-recipe-version-bump/index.js b/.github/workflows/check-recipe-version-bump/index.js
index 606c1bd..3c40480 100644
--- a/.github/workflows/check-recipe-version-bump/index.js
+++ b/.github/workflows/check-recipe-version-bump/index.js
@@ -32,7 +32,7 @@ async function readFileFromGitBranch(branch, filename) {
32 32
33try { 33try {
34 const changedFilesString = core.getInput('changed-files'); 34 const changedFilesString = core.getInput('changed-files');
35 const changedFiles = JSON.parse(changedFilesString); 35 const changedFiles = changedFilesString.split(' ');
36 36
37 const changedFilesInRecipes = changedFiles 37 const changedFilesInRecipes = changedFiles
38 .filter(filename => filename.startsWith('recipes/')) 38 .filter(filename => filename.startsWith('recipes/'))