Skip to content

Commit 5a46c08

Browse files
author
Lukas Pühringer
authored
Merge pull request #666 from jku/fix-ed25519-upstream-check
Fix ed25519 upstream check
2 parents acb84c5 + fe4b578 commit 5a46c08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-upstream-ed25519.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ jobs:
3131
console.log("ed25519 upstream main has changed!")
3232
console.log("${{ steps.test_ed25519.outputs.output }}")
3333
const repo = context.repo.owner + "/" + context.repo.repo
34-
const issues = await github.search.issuesAndPullRequests({
34+
const issues = await github.rest.search.issuesAndPullRequests({
3535
q: "ed25519+upstream+has+new+commits+in:title+state:open+type:issue+repo:" + repo,
3636
})
3737
3838
if (issues.data.total_count > 0) {
3939
console.log("Issue is already open, not creating.")
4040
} else {
4141
console.log("Creating a new issue...")
42-
await github.issues.create({
42+
await github.rest.issues.create({
4343
owner: context.repo.owner,
4444
repo: context.repo.repo,
4545
title: "ed25519 upstream has new commits",

0 commit comments

Comments
 (0)