Skip to content

Find Pull Request

Actions
A GitHub Action for finding pull requests
v1.9.0
Latest
Star (26)

Tags

 (1)

find-pull-request-action

A GitHub Action for finding pull requests.

Usage

steps:
  - name: Find Pull Request
    uses: juliangruber/find-pull-request-action@v1
    id: find-pull-request
    with:
      branch: my-branch-name
  - run: echo "Pull Request ${number} (${sha})"
    env:
      number: ${{ steps.find-pull-request.outputs.number }}
      sha: ${{ steps.find-pull-request.outputs.head-sha }}

Query pull requests based on these inputs:

  • branch
  • base
  • author
  • state
  • repo
  • sort
  • direction
  • labels

For the first matching pull request, these outputs will be set:

  • number
  • title
  • url
  • head-ref
  • head-sha
  • base-ref
  • base-sha
  • base-repo
  • state

See action.yml for more details.

Related

License

MIT

Find Pull Request is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

A GitHub Action for finding pull requests
v1.9.0
Latest

Tags

 (1)

Find Pull Request is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.