Skip to content

Commit e60448c

Browse files
committed
format query
1 parent 7616e76 commit e60448c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/missing-documentation-reminder.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
script: |
2727
const query = `repo:${context.repo.owner}/${context.repo.repo} is:pr is:closed label:"needs documentation" is:merged`;
2828
const { data: { items: pullRequests } } = await github.rest.search.issuesAndPullRequests({
29-
q: query,
29+
q: `q=${encodeURIComponent(query)}`,
3030
per_page: 100
3131
});
3232
@@ -45,4 +45,7 @@ jobs:
4545
body: |
4646
The following PRs have been closed but still need updates in the book:
4747
${{ steps.find-prs.outputs.result }}
48+
49+
If you are an author of one of these PRs, please consider updating the boook in `/docs` with appropriate documentation.
50+
Thank you!
4851
edit-mode: replace

0 commit comments

Comments
 (0)