Skip to content

Commit

Permalink
style: replace 두번째 파라미터 누락 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyu0218 authored Feb 14, 2024
1 parent b6202c0 commit 1e042ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/configure-pr-automatically.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
const prTitle = context.payload.pull_request.title;
const issueNumbers = prTitle.match(/#(\d+)/g);
const prefix = issueNumbers ? issueNumbers.reduce((acc, curr) => `${acc} ${curr}`, "resolved") : '';
const body = context.payload.pull_request.body.replace(/🔮 resolved #(\d+)( #(\d+))*/g);
const body = context.payload.pull_request.body.replace(/🔮 resolved #(\d+)( #(\d+))*/g, '');
github.rest.pulls.update({
owner: context.repo.owner,
Expand Down

0 comments on commit 1e042ba

Please sign in to comment.