https://github.com/mt-inside/make-release
https://github.com/mt-inside/make-release
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mt-inside/make-release
- Owner: mt-inside
- License: mit
- Created: 2020-12-08T22:39:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-16T10:01:29.000Z (over 3 years ago)
- Last Synced: 2025-10-28T01:37:42.613Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 199 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TODO
# Update Pull Request Description
### Easily update a Pull Requests description with this GitHub Action
## Usage
Inside your `.github/workflows/workflow.yml` file:
```yaml
steps:
- uses: riskledger/update-pr-description@dev
with:
body: ${{ description }} # The text you wish to overwrite your Pull Request description with, can be a variable or a string
token: ${{ secrets.GITHUB_TOKEN }}
```
## Arguments
This action currently supports two inputs from the user: `body` and `token`. These inputs, along with their descriptions and usage contexts, are listed in the table below:
| Input | Description | Usage |
| :-----: | :---------------------------------------------------------------------------------------------------------: | :--------: |
| `body` | The text you wish to overwrite your Pull Request description with | _Required_ |
| `token` | Your Github access token, which will already be available within your workflow without any additional setup | _Required_ |
## License
The code in this project is released under the [MIT](license).
## Contributing
```shell
yarn install
yarn run lint:all
yarn run build
```