mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-23 07:42:13 -05:00
cleanup versioning file
This commit is contained in:
parent
16adeb005e
commit
517c8acb5e
1 changed files with 29 additions and 1 deletions
30
.github/workflows/versioning.yml
vendored
30
.github/workflows/versioning.yml
vendored
|
@ -1,14 +1,42 @@
|
||||||
name: Keep the versions up-to-date
|
---
|
||||||
|
#########################
|
||||||
|
#########################
|
||||||
|
## Version GitHub Tags ##
|
||||||
|
#########################
|
||||||
|
#########################
|
||||||
|
|
||||||
|
#
|
||||||
|
# Documentation:
|
||||||
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
||||||
|
#
|
||||||
|
|
||||||
|
##########################
|
||||||
|
# Name of the action job #
|
||||||
|
##########################
|
||||||
|
name: Keep GitHub tag versions up-to-date
|
||||||
|
|
||||||
|
#####################################################
|
||||||
|
# Run the job when a release is published or edited #
|
||||||
|
#####################################################
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types: [published, edited]
|
types: [published, edited]
|
||||||
|
|
||||||
|
#################
|
||||||
|
# Start the job #
|
||||||
|
#################
|
||||||
jobs:
|
jobs:
|
||||||
actions-tagger:
|
actions-tagger:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
|
#############################
|
||||||
|
# Check out the latest code #
|
||||||
|
#############################
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
######################
|
||||||
|
# Run the tag action #
|
||||||
|
######################
|
||||||
- uses: Actions-R-Us/actions-tagger@latest
|
- uses: Actions-R-Us/actions-tagger@latest
|
||||||
with:
|
with:
|
||||||
publish_latest_tag: true
|
publish_latest_tag: true
|
||||||
|
|
Loading…
Reference in a new issue