-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from ArielSAdamsNASA/fix-201-changelog_github…
…_actions Fix #201, Create Changelog GitHub Actions Workflow
- Loading branch information
Showing
1 changed file
with
34 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Changelog | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Run Changelog | ||
uses: heinrichreimer/github-changelog-generator-action@v2.1.1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
issuesLabel: "### Closed issues" | ||
breakingLabel: "### Breaking changes" | ||
enhancementLabel: "### Implemented enhancements" | ||
bugsLabel: "### Fixed bugs" | ||
deprecatedLabel: "### Deprecated" | ||
removedLabel: "### Removed" | ||
securityLabel: "### Security fixes" | ||
pullRequests: false | ||
author: false | ||
|
||
- name: "Upload changelog" | ||
uses: actions/upload-artifact@v1.0.0 | ||
with: | ||
name: "Changelog" | ||
path: CHANGELOG.md | ||
|