Skip to content

Update Changelog

Update Changelog #109

Workflow file for this run

name: Update Changelog
concurrency: ci-aio-lib-java
on:
push:
branches:
- main
workflow_dispatch:
workflow_run:
workflows: ["Update Docs"]
types:
- completed
jobs:
changelog:
runs-on: ubuntu-latest
if: github.repository == 'adobe/aio-lib-java' && github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Generate Changelog
uses: heinrichreimer/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
headerLabel: "# πŸ“‘ Changelog"
breakingLabel: '### πŸ’₯ Breaking'
enhancementLabel: '### πŸš€ Enhancements'
bugsLabel: '### πŸ› Bug fixes'
securityLabel: '### πŸ›‘οΈ Security'
issuesLabel: '### πŸ“ Other issues'
prLabel: '### πŸ“ Other pull requests'
addSections: '{"documentation":{"prefix":"### πŸ“– Documentation","labels":["documentation"]},"tests":{"prefix":"### βœ… Testing","labels":["tests"]}}'
issues: false
issuesWoLabels: false
pullRequests: true
prWoLabels: true
author: true
unreleased: true
compareLink: true
stripGeneratorNotice: true
verbose: true
- name: Commit Changelog
run: |
git config user.name "GitHub Actions"
git config user.email [email protected]
git add CHANGELOG.md
git commit -m 'Update Changelog.'
git push