Skip to content

Commit

Permalink
chore: fix find-pr action (#907)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhousley authored Feb 29, 2024
1 parent 8ae4d13 commit 26f9b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/find-pull-request/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (args.githubRef.startsWith('refs/heads/')) {
owner: github.context.repo.owner,
repo: github.context.repo.repo,
state: 'open',
head: branchName
head: `${github.context.repo.owner}:${branchName}`
})

if (!Array.isArray(pullRequests) || pullRequests.length === 0) {
Expand Down

0 comments on commit 26f9b6a

Please sign in to comment.