Skip to content

Commit

Permalink
qwf
Browse files Browse the repository at this point in the history
  • Loading branch information
skamril committed Mar 5, 2024
1 parent 6539feb commit 61cf171
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
- name: Generate changelog
id: generate_changelog
run: |
# Utilisez git pour extraire les messages de commit entre cette branche et master
CHANGELOG=$(git log origin/master.. --oneline --no-merges)
npm install -g conventional-changelog-cli
conventional-changelog -p angular -i CHANGELOG.md -s -r 0
CHANGELOG=$(cat CHANGELOG.md)
# Formatage pour Markdown (commentaire GitHub)
CHANGELOG="${CHANGELOG//'%'/'%25'}"
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
Expand Down

0 comments on commit 61cf171

Please sign in to comment.