mirror of
https://github.com/SethCohen/github-releases-to-discord
synced 2026-09-14 20:13:23 +00:00
feat(workflow): add GitHub Actions workflow to automatically update SemVer tags on tag push events
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
name: Update SemVer Tags
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- '**'
|
||||||
|
tags:
|
||||||
|
- 'v*.*.*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update_semver:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Update semver tags
|
||||||
|
uses: haya14busa/action-update-semver@v1
|
||||||
Reference in New Issue
Block a user