Skip to content

Commit

Permalink
Don't assume every project includes repo.yml
Browse files Browse the repository at this point in the history
> e.g. https://github.com/product-os/.github/actions/runs/13248425179/job/36986287233#step:11:41

Check error message string to restore behaviour prior to #1358

change-type: patch
  • Loading branch information
ab77 authored Feb 10, 2025
1 parent 9e9d663 commit d2a7624
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flowzone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,9 @@ jobs:
silent: false,
});
} catch (e) {
core.setFailed(e.message);
if (! /^No such file or directory:.*$/.test(e.message)) {
core.setFailed(e.message);
}
}
console.log('New version: ', version);
Expand Down

0 comments on commit d2a7624

Please sign in to comment.