Skip to content

Commit

Permalink
feat(action): Add config input
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 12, 2024
1 parent 13430d9 commit 91799f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ A configurable commit-based changelog generator. It finds commits since the prev

#### Inputs

| Name | Description | Default |
|---------|--------------------------------------------|---------------------|
| `token` | GitHub token used to fetch release assets. | `${{ github.token }}` |
| Name | Description | Default |
|----------|--------------------------------------------|-----------------------------|
| `config` | Path to the config file. | `.changelog-generator.yaml` |
| `token` | GitHub token used to fetch release assets. | `${{ github.token }}` |

#### Outputs

Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ branding:
icon: list
color: purple
inputs:
config:
description: Path to the config file
default: ${{ github.workspace }}/.changelog-generator.yaml
token:
description: GitHub token
default: ${{ github.token }}
Expand Down

0 comments on commit 91799f9

Please sign in to comment.