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 e68c419 commit 92b84bbCopy full SHA for 92b84bb
.github/workflows/missing-documentation-reminder.yml
@@ -25,16 +25,14 @@ jobs:
25
id: find-prs
26
with:
27
script: |
28
- const repo = context.repo;
29
- const repo_scope = `${repo.owner}/${repo.repo}`;
30
31
- const query = `repo:${repo_scope} bevy`;
+ const query = `repo:${{ github.repository }} bevy`;
32
const encodedQuery = encodeURIComponent(query);
33
34
console.log(encodedQuery);
35
36
const { data: { items: pullRequests } } = await github.rest.search.issuesAndPullRequests({
37
- q: encodedQuery,
+ q: query,
38
per_page: 1
39
});
40
0 commit comments