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