https://github.com/knope-dev/knope
A command line tool to handle all the tasks most developers find tedious.
https://github.com/knope-dev/knope
changelog changelog-generator changesets conventional-commits release-automation semantic-release semantic-versioning
Last synced: 29 days ago
JSON representation
A command line tool to handle all the tasks most developers find tedious.
- Host: GitHub
- URL: https://github.com/knope-dev/knope
- Owner: knope-dev
- License: mit
- Created: 2020-10-23T14:42:28.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-09-04T17:23:26.000Z (about 1 month ago)
- Last Synced: 2025-09-04T17:26:02.542Z (about 1 month ago)
- Topics: changelog, changelog-generator, changesets, conventional-commits, release-automation, semantic-release, semantic-versioning
- Language: Rust
- Homepage: https://knope.tech
- Size: 8 MB
- Stars: 131
- Watchers: 3
- Forks: 12
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Knope
[](https://discord.gg/W75uRrBCEM)
A command line tool that happily completes the tasks which most developers find tedious.
## Example: Automating GitHub Actions Release
Got some conventional commits?
```
feat: A spicy feature
fix: Some sauce
```And some changesets?
```
---
my-package: major
---#### Big deal
You probably want to read this before upgrading 💜
```Do you want to release this by hand? Knope! Here's a GitHub Actions workflow:
```yaml
name: Drop a new versionon: workflow_dispatch
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- uses: knope-dev/action@v1 # Install Knope
with:
version: 0.21.3
- run: knope release
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
```You get a GitHub release and a changelog, picking the [semantic version] based on the combination of [conventional commits] and [changesets].
```markdown
## 2.0.0### Breaking Changes
#### Big deal
You probably want to read this before upgrading 💜
### Features
#### A spicy feature
### Fixes
#### Some sauce
```Knope can do much more with some customization, [read the docs](https://knope.tech) for more info.
[conventional commits]: https://www.conventionalcommits.org
[semantic version]: https://semver.org
[changesets]: https://github.com/changesets/changesets