feat(input): use the config file from given path

This commit is contained in:
orhun
2021-06-18 03:00:25 +03:00
parent 920cd73efd
commit 9e859999aa
4 changed files with 35 additions and 3 deletions

View File

@@ -6,7 +6,8 @@ This action generates a changelog based on your Git history using [git-cliff](ht
### Inputs
* `args`: Arguments to pass to git-cliff. Default `"-v"`
* `config`: Path of the configuration file. Default: `"cliff.toml"`
* `args`: Arguments to pass to git-cliff. Default: `"-v"`
### Outputs
@@ -18,6 +19,7 @@ This action generates a changelog based on your Git history using [git-cliff](ht
- name: Changelog Generator
uses: orhun/git-cliff-action@v1
with:
config: cliff.toml
args: --verbose
```