mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
682eafc49d
Bumps [Actions-R-Us/actions-tagger](https://github.com/Actions-R-Us/actions-tagger) from v2.0.0 to v2.0.1. - [Release notes](https://github.com/Actions-R-Us/actions-tagger/releases) - [Commits](https://github.com/Actions-R-Us/actions-tagger/compare/v2.0.0...95c51c646e75db5c6b7d447e3087bcee58677341) Signed-off-by: dependabot[bot] <support@github.com>
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
#########################
|
|
#########################
|
|
## 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.3.1
|
|
|
|
######################
|
|
# Run the tag action #
|
|
######################
|
|
- uses: Actions-R-Us/actions-tagger@v2.0.1
|
|
with:
|
|
publish_latest_tag: true
|
|
env:
|
|
GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}"
|