mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 23:45:43 +08:00
18 lines
436 B
YAML
18 lines
436 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
git-cliff-action:
|
|
runs-on: ubuntu-latest
|
|
name: Test the git-cliff changelog generator action
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Generate a changelog
|
|
id: git-cliff
|
|
uses: ./
|
|
with:
|
|
config: fixtures/cliff.toml
|
|
args: --verbose
|
|
- name: Print the changelog
|
|
run: echo "${{ steps.git-cliff.outputs.changelog }}"
|