auto-release workflow

This commit is contained in:
Alex Pliutau 2020-05-31 16:56:11 +02:00
parent 0461b35d07
commit 2e16e4fb10
2 changed files with 23 additions and 0 deletions

4
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,4 @@
#### What does this PR do?
#### Where should the reviewer start?
#### How should this be manually tested?
#### Any background context you want to provide?

19
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,19 @@
---
name: "release"
on:
pull_request:
types:
- "closed"
jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- name: Tag
uses: K-Phoen/semver-release-action@master
with:
release_branch: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}