Skip to content

Commit

Permalink
docs(website): add documentation for taiki-e/install-action (#563)
Browse files Browse the repository at this point in the history
* docs(website): add documentation for taiki-e/install-action

* style: simplify install-action docs

---------

Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
  • Loading branch information
tranzystorekk and orhun authored Mar 20, 2024
1 parent 566d9f3 commit 85db777
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions website/docs/github-actions/taiki-e-install-action.md
Original file line number Diff line number Diff line change
@@ -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
```

0 comments on commit 85db777

Please sign in to comment.