Skip to content

Commit 7053540

Browse files
author
Enda Phelan
committed
add README
1 parent 09e25c1 commit 7053540

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# install-git-chglog
2+
3+
This action installs [git-chglog](https://pkg.go.dev/github.com/git-chglog/git-chglog?utm_source=godoc) and adds it to your PATH.
4+
5+
## Usage
6+
7+
See [action.yaml](https://github.com/actions/setup-go/blob/main/action.yml)
8+
9+
Basic:
10+
11+
```yaml
12+
steps:
13+
- uses: actions/install-git-chglog@v0
14+
with:
15+
version: 'v0.14.0' # The git-chglog version to use
16+
- run: git-chglog -o CHANGELOG.md
17+
```
18+
19+
## License
20+
21+
The scripts and documentation in this project are released under the [MIT License](LICENSE).
22+
23+
## Contributions
24+
25+
Are welcome.
26+
27+
## Limitations
28+
29+
This will only run on `ubuntu`, so there is no point in passing anything to `runs-on`. I did not see a need to add this, but if you have this use case please reach out via an issue or PR.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'git-chglog action'
1+
name: 'install-git-chglog'
22
description: 'GitHub Action for git-chglog. Anytime, anywhere, Write your CHANGELOG.'
33
author: 'craicoverflow'
44
branding:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "git-chglog-action",
2+
"name": "install-git-chglog",
33
"description": "GitHub Action for git-chglog",
44
"version": "0.1.0",
55
"main": "lib/main.js",

0 commit comments

Comments
 (0)