Skip to content

Commit

Permalink
Fix upstream CI report (#9602)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Oct 27, 2022
1 parent 3ed78ec commit da9a257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upstream.yml
Expand Up @@ -114,15 +114,15 @@ jobs:
// If no issue is open, create a new issue,
// else update the body of the existing issue.
if (result.repository.issues.edges.length === 0) {
github.issues.create({
github.rest.issues.create({
owner: variables.owner,
repo: variables.name,
body: issue_body,
title: title,
labels: [variables.label]
})
} else {
github.issues.update({
github.rest.issues.update({
owner: variables.owner,
repo: variables.name,
issue_number: result.repository.issues.edges[0].node.number,
Expand Down

0 comments on commit da9a257

Please sign in to comment.