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 835aaa1 commit 2c71b66Copy full SHA for 2c71b66
1 file changed
.github/workflows/star-reminder.yml
@@ -25,7 +25,7 @@ jobs:
25
26
// Use GraphQL to check if user starred the repo
27
const query = `
28
- query($owner: String!, $repo: String!, $user: String!) {
+ query($user: String!) {
29
user(login: $user) {
30
starredRepositories(first: 100, orderBy: {field: STARRED_AT, direction: DESC}) {
31
nodes {
@@ -41,8 +41,6 @@ jobs:
41
42
try {
43
const result = await github.graphql(query, {
44
- owner: owner,
45
- repo: repo,
46
user: contributor
47
});
48
0 commit comments