Skip to content
This repository has been archived by the owner on Dec 10, 2023. It is now read-only.

Merge pull request #5 from crowbait/1.2.0 #4

Merge pull request #5 from crowbait/1.2.0

Merge pull request #5 from crowbait/1.2.0 #4

Workflow file for this run

name: Create Release
on:
push:
tags:
- '*'
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create changelog text
id: changelog
uses: loopwerk/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
exclude_types: other,docs,ci,refactor,style,test,chore
- name: Create release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.changelog.outputs.changes }}
draft: true