Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No closed prs #518

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading