Generate Changelog for Porter #2
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: Generate Changelog for Porter | |
on: | |
release: | |
types: [published] | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3.3.0 | |
with: | |
ref: main | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: Install conventional-changelog-cli | |
run: npm install -g conventional-changelog-cli | |
- name: Generate changelog | |
run: conventional-changelog -p angular -i CHANGELOG.md -s -r 0 | |
- name: Commit and push changes | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email 'actions@github.com' | |
git add CHANGELOG.md | |
git commit -m "Updated Changelog after Latest Release" || echo "No changes to commit" | |
git push origin main |