We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7616e76 commit e60448cCopy full SHA for e60448c
.github/workflows/missing-documentation-reminder.yml
@@ -26,7 +26,7 @@ jobs:
26
script: |
27
const query = `repo:${context.repo.owner}/${context.repo.repo} is:pr is:closed label:"needs documentation" is:merged`;
28
const { data: { items: pullRequests } } = await github.rest.search.issuesAndPullRequests({
29
- q: query,
+ q: `q=${encodeURIComponent(query)}`,
30
per_page: 100
31
});
32
@@ -45,4 +45,7 @@ jobs:
45
body: |
46
The following PRs have been closed but still need updates in the book:
47
${{ 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!
51
edit-mode: replace
0 commit comments