From 0934b3f408f01aa0d4902476af40d955c43c11bf Mon Sep 17 00:00:00 2001 From: David Finol Date: Sun, 28 Feb 2021 10:45:48 -0600 Subject: [PATCH] Create versioning.yml (#222) * Create versioning.yml * Apply suggestions from code review --- .github/workflows/versioning.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/versioning.yml diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml new file mode 100644 index 00000000..6ee3b060 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,14 @@ +name: Versioning + +on: + release: + types: [published, edited] + +jobs: + updateMajorTag: + name: Update major tag + runs-on: ubuntu-latest + steps: + - uses: Actions-R-Us/actions-tagger@v2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}