From 2e16e4fb107890930165be144d47f0a4c4e0b1d9 Mon Sep 17 00:00:00 2001 From: Alex Pliutau Date: Sun, 31 May 2020 16:56:11 +0200 Subject: [PATCH] auto-release workflow --- .github/PULL_REQUEST_TEMPLATE.md | 4 ++++ .github/workflows/release.yml | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/release.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..f567298 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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? \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..370cab7 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }} \ No newline at end of file