ci: add workflow to tag latest major versions

This commit is contained in:
Borja Canseco
2020-10-10 00:19:32 +00:00
committed by GitHub
parent 7e58374dab
commit 3e55a03746

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

@@ -0,0 +1,13 @@
name: release
on:
release:
types: [published, edited]
jobs:
latest-major-version-tagger:
runs-on: ubuntu-latest
steps:
- uses: actions-r-us/actions-tagger@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}