Skip to content

Commit

Permalink
DBP-681-automate-generation-of-tags (#14)
Browse files Browse the repository at this point in the history
DBP-681-automate-generation-of-tags (#14)
  • Loading branch information
aimee-889 authored Mar 13, 2024
1 parent dbca3d8 commit 203c805
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/auto-tag-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Update Semver Tags

on:
push:
tags:
- '*.*.*'

permissions:
contents: write

jobs:
update-semver-tags:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1

- name: Update Semver
uses: rickstaa/action-update-semver@77e8cb0f3cd805b38ffe25c07236336e05dcb4da #v1.1.4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
major_version_tag_only: false

0 comments on commit 203c805

Please sign in to comment.