2023-07-28 22:07:07 +02:00
|
|
|
# Cuddle Please
|
|
|
|
|
|
|
|
Cuddle Please is an extension to `cuddle`, it is a separate binary that can be executed standalone as cuddle-please, or in cuddle as `cuddle please`.
|
|
|
|
|
|
|
|
The goal of the software is to be a `release-please` clone, targeting `gitea` instead of `github`.
|
|
|
|
|
|
|
|
The tool can be executed as a binary using:
|
|
|
|
|
|
|
|
`cuddle please pr create`
|
|
|
|
|
|
|
|
And when a release has been built:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cuddle please release
|
|
|
|
```
|
|
|
|
|
|
|
|
cuddle will default to information to it available in git, or use a specific entry in `cuddle.yaml` called
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
# ...
|
|
|
|
please:
|
|
|
|
name: <something>
|
|
|
|
# ...
|
|
|
|
# ...
|
|
|
|
```
|
|
|
|
|
|
|
|
or as `cuddle.please.yaml`
|
|
|
|
|
|
|
|
See docs for more information about installation and some such
|
2023-07-31 23:00:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
## Checklist
|
|
|
|
|
|
|
|
### 0.1 Milestone
|
|
|
|
|
2023-07-31 23:14:18 +02:00
|
|
|
- [x] Hide unneccessary commands
|
2023-08-01 02:31:44 +02:00
|
|
|
- [x] Redo configuration frontend
|
2023-08-01 17:16:43 +02:00
|
|
|
- [x] Refactor command.rs into smaller bits so that bits are easier to test
|
2023-07-31 23:00:53 +02:00
|
|
|
- [ ] Add reporter for PR and Repositories
|
|
|
|
- [ ] Setup temporary git name and email to use for git committing
|
|
|
|
|
|
|
|
### 0.2 Milestone
|
|
|
|
|
|
|
|
- [ ] Add docs
|
|
|
|
- [ ] Add asciidoc
|
|
|
|
- [ ] Add examples
|
2023-08-01 17:17:39 +02:00
|
|
|
- [ ] Fx drone config
|
|
|
|
- [ ] Releaser
|
|
|
|
- [ ] On main/master
|
2023-07-31 23:00:53 +02:00
|
|
|
- [ ] tbd...
|
|
|
|
|
|
|
|
### 0.3 Milestone
|
|
|
|
|
|
|
|
- [ ] Add inquire for missing values when needed (when not running in ci or have a proper tty)
|
|
|
|
|
|
|
|
### 0.x Milestone
|
|
|
|
- [ ] Add github support
|
|
|
|
- [ ] Create docker image
|