GitXplorerGitXplorer
k

setup-git-cliff

public
3 stars
3 forks
4 issues

Commits

List of commits on branch main.
Verified
f8c06c101da2dc5d4d1e007b015d002d15987532

chore: sync files (#86)

kkenji-miyake-bot[bot] committed 6 months ago
Verified
002fb60c4a9edd9c4cb14584b1bc48ac42a9c97e

ci: add test-windows job (#89)

kkenji-miyake committed 6 months ago
Verified
2778609c643a39a2576c4bae2e493b855eb4aee8

fix: add an option to change the archive extension (#84)

committed 8 months ago
Verified
f64c3e0ae98ea2440d8bd1735a773f6194d9cad1

chore: sync files (#81)

kkenji-miyake-bot[bot] committed 8 months ago
Verified
d5f6b9ef8239456e3b5f66bf8f1385f86eae79c0

ci(pre-commit): freeze eslint dependencies (#85)

kkenji-miyake committed 8 months ago
Verified
8c21126444646ca24ccbdf0823ce14de29d7468f

chore: sync files (#79)

kkenji-miyake-bot[bot] committed a year ago

README

The README file for this repository.

setup-git-cliff

This action sets up orhun/git-cliff.

Usage

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: Check out repository
        uses: actions/checkout@v3

      - name: Set up git-cliff
        uses: kenji-miyake/setup-git-cliff@v2

      - name: Run git-cliff
        run: |
          git cliff

Action inputs and outputs

Refer to action.yaml.

Skip authentication

By default, this action will use the ${{ github.token }} context variable to authenticate to GitHub.

This could result in a Bad credentials exception if the action is running on a self-hosted runner connected to a GitHub Enterprise Server instance.

To avoid this, you can explicitly set the token to null to perform an unauthenticated request:

- name: Set up git-cliff
  uses: kenji-miyake/setup-git-cliff@v2
  with:
    token: null