Skip to content

Commit

Permalink
Add workflow to keep the major tag up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
ocean90 committed Oct 18, 2021
1 parent 8eab095 commit 789e353
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Keep the major version tag up-to-date

on:
release:
types: [published, edited]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
update-major-tag:
runs-on: ubuntu-latest

steps:
- uses: Actions-R-Us/actions-tagger@v2

0 comments on commit 789e353

Please sign in to comment.