aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/check-recipe-version-bump/index.js
diff options
context:
space:
mode:
authorLibravatar Nathanaƫl Houn <contact@nathanaelhoun.fr>2023-05-15 00:21:21 +0200
committerLibravatar GitHub <noreply@github.com>2023-05-14 23:21:21 +0100
commit36184d9c387ad73f865b86701540ea8b7c38c825 (patch)
tree28d95efc368785c34e72351d4ba8a787ceeefade /.github/workflows/check-recipe-version-bump/index.js
parentUpgrade pnpm and node versions; Upgrade npm modules (diff)
downloadferdium-recipes-36184d9c387ad73f865b86701540ea8b7c38c825.tar.gz
ferdium-recipes-36184d9c387ad73f865b86701540ea8b7c38c825.tar.zst
ferdium-recipes-36184d9c387ad73f865b86701540ea8b7c38c825.zip
fix(ci): version bump check when new recipe and multiple commits (#362)
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/'))