mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 15:35:44 +08:00
22 lines
494 B
YAML
22 lines
494 B
YAML
name: Action Test
|
|
|
|
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
|
|
with:
|
|
fetch-depth: 0
|
|
- 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 }}"
|