Files
git-cliff-action/.github/workflows/main.yml

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 }}"