Skip to content

Commit

Permalink
Add the git-cliff workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvdlinde committed Aug 10, 2024
1 parent 989d206 commit ab67941
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-for-git-cliff.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI Workflow

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Generate a changelog
uses: orhun/git-cliff-action@v3
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md
GITHUB_REPO: ${{ github.repository }}

0 comments on commit ab67941

Please sign in to comment.