ci: add 'Release PR Changelog' GitHub action #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |