From c1009555bd1104bbb1a57110a505c6decc2b8149 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Sun, 2 Jun 2024 12:49:41 -0500 Subject: [PATCH] Add workflow to keep major version up to date --- .github/workflows/update-major-version.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/update-major-version.yml diff --git a/.github/workflows/update-major-version.yml b/.github/workflows/update-major-version.yml new file mode 100644 index 0000000..e84d440 --- /dev/null +++ b/.github/workflows/update-major-version.yml @@ -0,0 +1,13 @@ +name: Keep the major version up-to-date + +on: + release: + types: [published, edited] + +jobs: + actions-tagger: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: Actions-R-Us/actions-tagger@330ddfac760021349fef7ff62b372f2f691c20fb # v2.0.3 \ No newline at end of file