Update Major Minor Tags #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Major Minor Tags | |
on: | |
push: | |
branches-ignore: | |
- "**" | |
tags: | |
- "*.*.*" | |
workflow_dispatch: | |
jobs: | |
update_major_minor_tags: | |
name: Make sure major and minor tags are up to date on a patch release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Update semver | |
uses: haya14busa/action-update-semver@v1 |