Skip to content

GH-257 updating to adhere to the latest recommended configuration for… #136

GH-257 updating to adhere to the latest recommended configuration for…

GH-257 updating to adhere to the latest recommended configuration for… #136

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/github-changelog-generator-action@v2.3
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 noreply@github.com
git add CHANGELOG.md
git commit -m 'Update Changelog.'
git push