1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-09-11 06:55:38 +03:00

docs(website): add documentation for taiki-e/install-action (#563)

* docs(website): add documentation for taiki-e/install-action

* style: simplify install-action docs

---------

Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
This commit is contained in:
Marcin Puc 2024-03-20 15:31:56 +01:00 committed by GitHub
parent 566d9f36b5
commit 85db777609
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,20 @@
# taiki-e/install-action
[taiki-e/install-action](https://github.com/taiki-e/install-action) enables a manual workflow
where `git-cliff` is automatically installed into your GitHub Actions environment from pre-built releases
and you can invoke it in subsequent shell script steps.
For example:
```yml
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install git-cliff
uses: taiki-e/install-action@git-cliff
- name: Generate changelog
run: git-cliff
```