Skip to content

Commit

Permalink
Fix merge workflow (#926)
Browse files Browse the repository at this point in the history
## Summary
* Fix the import path of the PR description formatter in the merge
workflow, as the path is treated as relative to the repo root and
not the workflow file 

Fixes the issue introduced in

4cd20fa
and observed in
#925 (comment)
  • Loading branch information
Clyybber authored Sep 27, 2023
1 parent 4cd20fa commit 40616ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/slash-command-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
return;
}
const formatPR = require('../../tools/ci_format_pr_description.js');
const formatPR = require('./tools/ci_format_pr_description.js');
let [ body, body_tail ] = pr_info.body.split(/^---\s*$/m, 2);
body = formatPR.formatPRdescription(body, 72);
Expand Down

0 comments on commit 40616ab

Please sign in to comment.