mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 07:25:43 +08:00
26 lines
711 B
YAML
26 lines
711 B
YAML
name: Action Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
git-cliff-action:
|
|
runs-on: ubuntu-latest
|
|
name: Test the git-cliff changelog generator action
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Generate a changelog
|
|
id: git-cliff
|
|
uses: ./
|
|
with:
|
|
config: fixtures/cliff.toml
|
|
args: --unreleased --strip 'footer' --exclude-path '.github/**' --tag 0.0.0
|
|
env:
|
|
OUTPUT: fixtures/CHANGELOG.md
|
|
- name: Print the changelog
|
|
run: cat "${{ steps.git-cliff.outputs.changelog }}"
|
|
- name: Print the version
|
|
run: echo "${{ steps.git-cliff.outputs.version }}"
|