Skip to content

ci: add 'Release PR Changelog' GitHub action #17

ci: add 'Release PR Changelog' GitHub action

ci: add 'Release PR Changelog' GitHub action #17

name: Release Changelog
on:
pull_request:
branches:
- master
types: [opened, synchronize]
jobs:
release-changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Important pour s'assurer que tous les commits sont récupérés
- name: Generate changelog
id: generate_changelog
run: |
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'}"
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
echo "::set-output name=changelog::$CHANGELOG"
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v1
with:
message: |
## Changelog
$(cat ${{ steps.generate_changelog.outputs.changelog_file }})
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}