mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -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:
|
||||
release:
|
||||
types: [published, edited]
|
||||
|
||||
#################
|
||||
# Start the job #
|
||||
#################
|
||||
jobs:
|
||||
actions-tagger:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
#############################
|
||||
# Check out the latest code #
|
||||
#############################
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
######################
|
||||
# Run the tag action #
|
||||
######################
|
||||
- uses: Actions-R-Us/actions-tagger@latest
|
||||
with:
|
||||
publish_latest_tag: true
|
||||
|
|
Loading…
Reference in a new issue