mirror of
https://github.com/stackrox/kube-linter-action.git
synced 2026-07-11 10:51:40 +00:00
78b632e41f
Add semver management action.
16 lines
290 B
YAML
16 lines
290 B
YAML
name: Update Semver
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- '**'
|
|
tags:
|
|
- 'v*.*.*'
|
|
jobs:
|
|
update-semver:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: haya14busa/action-update-semver@v1
|
|
with:
|
|
major_version_tag_only: true
|