Bump node from 22.5.1-alpine to 22.6.0-alpine in /server #109
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: Changelog | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
generate_changelog: | |
runs-on: ubuntu-latest | |
name: Generate changelog for master branch | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Generate changelog | |
uses: charmixer/auto-changelog-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit files | |
env: | |
CI_USER: ${{ secrets.YOUR_GITHUB_USER }} | |
CI_EMAIL: ${{ secrets.YOUR_GITHUB_EMAIL }} | |
run: | | |
git config --local user.email "$CI_EMAIL" | |
git config --local user.name "$CI_USER" | |
git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' && echo "push=true" >> $GITHUB_ENV || echo "No changes to CHANGELOG.md" | |
- name: Push changes | |
if: env.push == 'true' | |
env: | |
CI_USER: ${{ secrets.YOUR_GITHUB_USER }} | |
CI_TOKEN: ${{ secrets.YOUR_GITHUB_TOKEN }} | |
run: | | |
git push "https://$CI_USER:[email protected]/$GITHUB_REPOSITORY.git" HEAD:master |