Skip to content

Commit

Permalink
Merge pull request #518 from kommendorkapten/no-closed-prs
Browse files Browse the repository at this point in the history
  • Loading branch information
jku authored Jan 20, 2025
2 parents 6709630 + f81f237 commit ca94387
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions actions/signing-event/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,11 @@ runs:
repo: context.repo.repo,
commit_sha: context.sha
})
const open_prs = prs.data.filter(item => item.state === 'open')
if (prs.data.length > 1) {
core.setFailed("Found more than one open pull request the current commit")
} else if (prs.data.length == 0) {
if (open_prs.length > 1) {
core.setFailed("Found more than one open pull request with the current commit")
} else if (open_prs.length == 0) {
const response = await github.rest.pulls.create({
owner: context.repo.owner,
repo: context.repo.repo,
Expand All @@ -95,7 +96,7 @@ runs:
pr = response.data.number
console.log(`Created pull request #${pr}`)
} else {
pr = prs.data[0].number
pr = open_prs[0].number
console.log(`Found existing pull request #${pr}`)
}
Expand Down

0 comments on commit ca94387

Please sign in to comment.