Skip to content

Commit

Permalink
MINOR: Fix typo in dev_pr.js (#626)
Browse files Browse the repository at this point in the history
## What's Changed

Fix a typo in the dev_pr script affecting MINOR PRs.
  • Loading branch information
lidavidm authored Feb 21, 2025
1 parent 370031e commit 6564b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dev_pr.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ module.exports = {
check_title_format: function({core, github, context}) {
const title = context.payload.pull_request.title;
if (title.startsWith("MINOR: ")) {
context.log("PR is a minor PR");
console.log("PR is a minor PR");
return {"issue": null};
}

Expand Down

0 comments on commit 6564b47

Please sign in to comment.