Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/8BitJonny/gh-get-current-pr
Github Action for getting all the details about the current Pull Request if the commit is part of one
https://github.com/8BitJonny/gh-get-current-pr
automation ci-cd github-action github-actions javascript pull-requests workflow
Last synced: 1 day ago
JSON representation
Github Action for getting all the details about the current Pull Request if the commit is part of one
- Host: GitHub
- URL: https://github.com/8BitJonny/gh-get-current-pr
- Owner: 8BitJonny
- License: gpl-3.0
- Created: 2020-03-22T16:33:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-15T18:21:59.000Z (7 months ago)
- Last Synced: 2024-11-04T11:45:25.270Z (10 days ago)
- Topics: automation, ci-cd, github-action, github-actions, javascript, pull-requests, workflow
- Language: TypeScript
- Homepage:
- Size: 2.19 MB
- Stars: 120
- Watchers: 1
- Forks: 27
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
- stars - 8BitJonny/gh-get-current-pr - Github Action for getting all the details about the current Pull Request if the commit is part of one \[*GNU GPLv3*\] (⭐️120) (TypeScript)
- stars - 8BitJonny/gh-get-current-pr - Github Action for getting all the details about the current Pull Request if the commit is part of one \[*GNU GPLv3*\] (⭐️120) (TypeScript)
README
# Github Action: Get current PR
Github Action for checking if the current commit belongs to a pull request and returning the full PR object if that is the case
## :thinking: Why?
Inside a running github action you can't always get the information whether you are currently in a PR or not. If for example the trigger event is `pull_request` you have that information but not when your trigger event is `push`.
This action enables you to get the PR no matter which event type triggered the workflow.
## :keyboard: Usage
```yml
steps:
- uses: 8BitJonny/[email protected]
id: PR- run: echo "Your PR number is ${{ steps.PR.outputs.number }} and its JSON is ${{ steps.PR.outputs.pr }}"
```### Inputs
See [action.yml](action.yml) for more details.
```yml
steps:
- uses: 8BitJonny/[email protected]
id: PR
with:
# Authetication token to access GitHub APIs. (Can be omitted by default.)
github-token: ${{ github.token }}
# Verbose setting SHA when using Pull_Request event trigger to fix #16. (For push even trigger this is not necessary.)
sha: ${{ github.event.pull_request.head.sha }}
# Only return if PR is still open. (By default it returns PRs in any state.)
filterOutClosed: true
# Only return if PR is not in draft state. (By default it returns PRs in any state.)
filterOutDraft: true
```### Outputs
See [action.yml](action.yml) for more details.
```yml
steps:
- uses: 8BitJonny/[email protected]
id: PR- run: echo "PR ${prNumber} ${prTitle} at ${prUrl} is ${prJSON}"
if: steps.PR.outputs.pr_found == 'true'
env:
# JSON object with the full PR object
# toJSON(fromJSON(...pr)) parses it into memory and then format is with pretty-print.
prJSON: ${{ toJSON(fromJSON(steps.PR.outputs.pr)) }}
# Direct access to common PR properties
prNumber: ${{ steps.PR.outputs.number }}
prUrl: ${{ steps.PR.outputs.pr_url }}
prTitle: ${{ steps.PR.outputs.pr_title }}
prBody: ${{ steps.PR.outputs.pr_body }}
prCreatedAt: ${{ steps.PR.outputs.pr_created_at }}
prMergedAt: ${{ steps.PR.outputs.pr_merged_at }}
prClosedAt: ${{ steps.PR.outputs.pr_closed_at }}
prLabel: ${{ steps.PR.outputs.pr_labels }}
```### JSON output
Useful when the information you're looking for is not exported as a direct output of the action. Simply parse the `pr` output as JSON and navigate the object.
See [GitHub Documentation](https://docs.github.com/en/rest/commits/commits#list-pull-requests-associated-with-a-commit) for details how the object looks like.
```yml
steps:
- uses: 8BitJonny/[email protected]
id: PR- name: "Pull Request ${{ steps.PR.outputs.number }}"
if: steps.PR.outputs.pr_found == 'true'
run: |
echo "from ${{ fromJSON(steps.PR.outputs.pr).head.ref }}"
echo "to ${{ fromJSON(steps.PR.outputs.pr).base.ref }}"
```## Limitations
### Pull_request trigger
If you use the `pull_request` event trigger, it won't find the associated PR for the first commit inside that same PR out of the box.This [article](https://frontside.com/blog/2020-05-26-github-actions-pull_request/#how-does-pull_request-affect-actionscheckout) describes why this is, in detail.
A short form of the article's explanation is, that Github creates an extra merge commit before the `pull_request` event is triggered for which this action can't find an assosiated PR. The `pull_request` trigger for the second PR commit and all following, will again work as expected.#### Workaround
To always find and pass the correct commit SHA to this action use this workflow config:
```yml
steps:
- uses: 8BitJonny/[email protected]
id: PR
with:
sha: ${{ github.event.pull_request.head.sha }}
```
This will then work no matter the trigger event and no matter if it is the first PR commit or not.### Can't find closed, unmerged PRs
Currently, if you try to find a PR that hasn't been merged yet AND which has been closed, then this app will completely fail in finding that PR. This workflow can only find open PRs, draft PRs and closed+merged PRs.See https://github.com/8BitJonny/gh-get-current-pr/issues/165 for the progress on this issue as this might come in a later version.
## :computer: Contributing
Contributions are always welcome!