Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yining1023/pr-body-action
Get a PR's body by PR number
https://github.com/yining1023/pr-body-action
Last synced: about 1 month ago
JSON representation
Get a PR's body by PR number
- Host: GitHub
- URL: https://github.com/yining1023/pr-body-action
- Owner: yining1023
- Created: 2022-09-20T14:02:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T21:11:06.000Z (about 1 year ago)
- Last Synced: 2024-10-31T00:44:22.693Z (about 2 months ago)
- Language: JavaScript
- Size: 789 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get PR body action
This action get PR body by PR number
## Inputs
## `pr-number`
**Required**
## `GITHUB_TOKEN`
**Required**
## Outputs
## `body`
PR body
## Example usage
```
- name: Get PR Body
id: get-pull-request-body
uses: yining1023/[email protected]
with:
pr-number: ${{steps.find-pull-request.outputs.number}}
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
```