Skip to content

Commit

Permalink
filter for only open PRs
Browse files Browse the repository at this point in the history
Signed-off-by: Fredrik Skogman <[email protected]>
  • Loading branch information
kommendorkapten committed Jan 20, 2025
1 parent 6709630 commit f81f237
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 f81f237

Please sign in to comment.