From 517c8acb5ecae193abecfac72ee8939f912bd539 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Wed, 1 Jul 2020 08:12:09 -0500 Subject: [PATCH] cleanup versioning file --- .github/workflows/versioning.yml | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml index 01039a30..c95b118a 100644 --- a/.github/workflows/versioning.yml +++ b/.github/workflows/versioning.yml @@ -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