Skip to content

Merge branch 'master' of https://github.com/PAYONE-GmbH/PCP-client-ja… #2

Merge branch 'master' of https://github.com/PAYONE-GmbH/PCP-client-ja…

Merge branch 'master' of https://github.com/PAYONE-GmbH/PCP-client-ja… #2

Workflow file for this run

name: Generate Changelog
on:
push:
branches:
- master
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Generate Changelog
run: npm run changelog
- name: Commit and push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name github-actions
git config user.email [email protected]
git add CHANGELOG.md
git commit -m "chore: update changelog"
git push