forked from charmixer/auto-changelog-action
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance CI test changelog generation
- Loading branch information
1 parent
75462ff
commit a723457
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,26 @@ jobs: | |
- name: "✏️ Generate full changelog" | ||
id: generate-full-changelog | ||
uses: ./ | ||
with: | ||
headerLabel: "# Changelog" | ||
breakingLabel: '### 💥 Breaking' | ||
enhancementLabel: '### 🚀 Enhancements' | ||
bugsLabel: '### 🐛 Bug fixes' | ||
deprecatedLabel: '### ⚠️ Deprecations' | ||
removedLabel: '### 🔥 Removals' | ||
securityLabel: '### 🛡️ Security' | ||
issuesLabel: '### 📁 Other issues' | ||
prLabel: '### 📁 Other pull requests' | ||
addSections: '{"documentation":{"prefix":"### 📖 Documentation","labels":["documentation"]},"tests":{"prefix":"### ✅ Testing","labels":["tests"]}}' | ||
issues: true | ||
issuesWoLabels: true | ||
pullRequests: true | ||
prWoLabels: true | ||
author: true | ||
unreleased: true | ||
compareLink: true | ||
stripGeneratorNotice: true | ||
verbose: true | ||
- name: "📤 Upload changelog" | ||
uses: actions/[email protected] | ||
with: | ||
|