mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
931 B
37 lines
931 B
# GitHub Change Log Generator
|
|
|
|
## Configuration
|
|
|
|
Edit the config.yaml file to customize the generated output.
|
|
|
|
## Usage
|
|
|
|
```
|
|
.\generator.exe generate [flags] > changelog.md
|
|
```
|
|
|
|
### Options
|
|
|
|
```
|
|
Flags:
|
|
-h, --help help for generate
|
|
-m, --milestone string milestone title to get issues and pull requests for
|
|
-r, --repo string repository name to generate the Changelog for, in the form user/repo
|
|
--since-tag string issues and pull requests since tag
|
|
-s, --state string state of the issues and pull requests to get (open,closed or all)
|
|
-t, --token string personal access token
|
|
--until-tag string issues and pull requests until tag
|
|
|
|
Global Flags:
|
|
--config string config file (default is config.yaml)
|
|
```
|
|
|
|
## Example
|
|
|
|
Generate change logs for the ABP repository for the 0.19 milestone:
|
|
|
|
````
|
|
.\generator.exe generate -r abpframework/abp -m "0.19" > changelog.md
|
|
````
|
|
|