Skip to content

Commit

Permalink
Merge pull request #202 from ArielSAdamsNASA/fix-201-changelog_github…
Browse files Browse the repository at this point in the history
…_actions

Fix #201, Create Changelog GitHub Actions Workflow
  • Loading branch information
astrogeco authored Apr 2, 2021
2 parents c957990 + 97cfb9d commit 819385f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/changelog.yml
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

0 comments on commit 819385f

Please sign in to comment.