19 lines
409 B
YAML
19 lines
409 B
YAML
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
|