Skip to content

Commit

Permalink
fix: 🚧 testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Michard committed Jan 16, 2024
1 parent 80b6a72 commit a697869
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions .github/workflows/trigger_changelog.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
name: Generate changelog

on:
create:
tags:
- '*'
push:
branches: [ main, master]

jobs:
generate-changelog:
changelog:
name: Update Changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: BobAnkh/auto-generate-changelog@v1.2.5
with:
REPO_NAME: ''
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
PATH: 'CHANGELOG.md'
BRANCH: ''
COMMIT_MESSAGE: 'docs(CHANGELOG): update release notes'
TYPE: 'feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements'
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Update Changelog
uses: AlexxNB/chalogen@master
with:
title: Changelog
list: feat,fix,gitops,perf,docs,other
- name: Commit Changelog to repository
uses: stefanzweifel/git-auto-commit-action@v4.13.0
with:
commit_message: 'docs(Changelog): Update Changelog'
file_pattern: CHANGELOG.md

0 comments on commit a697869

Please sign in to comment.