Skip to content

Commit

Permalink
ci: fix set output
Browse files Browse the repository at this point in the history
  • Loading branch information
sahani-deriv committed Jun 28, 2024
1 parent d2be397 commit 848dc0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_versioning_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
const existingPR = pullRequests.find(pr => pr.title === 'chore(version): bump version and update changelog');
echo -e "VERSIONING_PR_EXISTS=$existingPR" >> "$GITHUB_OUTPUT"
if (existingPR) {
core.setOutput("VERSIONING_PR_EXISTS", true);
console.log("Version bump pull request exists. Please merge that pr first to pass the check.: #${existingPR.number}");
} else {
core.setOutput("VERSIONING_PR_EXISTS", false);
console.log("No version bump pull request found.");
}
Expand Down

0 comments on commit 848dc0e

Please sign in to comment.