Normalize PR descriptions to paragraph style.
- Converts bullet points in
## Summaryto sentences - Wraps file names in backticks (
action.yml,Cargo.toml) - Adds available bot commands
Automatically on PR: opened, edited, ready_for_review
name: Normalize PR
on:
pull_request_target:
types: [opened, edited, ready_for_review]
jobs:
normalize:
runs-on: ubuntu-latest
steps:
- uses: libnudget/prune@v1Before:
## Summary
- add new feature
- fix bug in utils
## Testing
- tested locally
After:
add new feature. fix bug in utils. Pre-commit covered the changes.
<details>
<summary>Available Bot Commands</summary>
**Cancel Runs:**
- `/cancel-runs`
- `/cancel-runs help`
**Rust Auto-Fix:**
- `/rust-fix fmt`
- `/rust-fix clippy`
- `/rust-fix all`
</details>
MIT