From da06ef6d9b7fa2d5f1ae681252f1b2f1a02a1f32 Mon Sep 17 00:00:00 2001 From: jfri3d <13779872+jfri3d@users.noreply.github.com> Date: Mon, 20 Jul 2020 19:15:47 +0200 Subject: [PATCH] Create create_changelog.yml --- .github/workflows/create_changelog.yml | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/create_changelog.yml diff --git a/.github/workflows/create_changelog.yml b/.github/workflows/create_changelog.yml new file mode 100644 index 0000000..47e3ab1 --- /dev/null +++ b/.github/workflows/create_changelog.yml @@ -0,0 +1,38 @@ +# This is a basic workflow to help you get started with Actions + +name: CHANGELOG + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Conventional Changelog Action + id: changelog + uses: TriPSs/conventional-changelog-action@v3 + with: + github-token: ${{ secrets.github_token }} + output-file: 'false' + skip-on-empty: 'true' + + - name: Create Release + uses: actions/create-release@v1 + if: ${{ steps.changelog.outputs.skipped == 'false' }} + env: + GITHUB_TOKEN: ${{ secrets.github_token }} + with: + tag_name: ${{ steps.changelog.outputs.tag }} + release_name: ${{ steps.changelog.outputs.tag }} + body: ${{ steps.changelog.outputs.clean_changelog }}