From b5d0a505ab80f0b1c5f711ed48ba1410f9a670b2 Mon Sep 17 00:00:00 2001 From: Nikhil Dua Date: Mon, 18 Sep 2023 10:30:43 -0700 Subject: [PATCH] add semver.yml --- .github/workflows/semver.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/semver.yaml diff --git a/.github/workflows/semver.yaml b/.github/workflows/semver.yaml new file mode 100644 index 0000000..79cc35a --- /dev/null +++ b/.github/workflows/semver.yaml @@ -0,0 +1,13 @@ +name: Update semver tags +on: + push: + branches-ignore: + - '**' + tags: + - 'v*.*.*' +jobs: + update-semver: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: haya14busa/action-update-semver@v1 \ No newline at end of file