From 97cfb9dbcc35275a7422be8758077f4e6b747905 Mon Sep 17 00:00:00 2001 From: Ariel Adams Date: Thu, 25 Feb 2021 15:02:48 -0600 Subject: [PATCH] Fix #201, Create Changelog GitHub Actions Workflow --- .github/workflows/changelog.yml | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/changelog.yml diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml new file mode 100644 index 000000000..c14f1b73e --- /dev/null +++ b/.github/workflows/changelog.yml @@ -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 + \ No newline at end of file