From 90969dc026bb73dcd6e56555f22836d2a0800d42 Mon Sep 17 00:00:00 2001 From: haya14busa Date: Sun, 19 Jan 2020 04:16:18 +0000 Subject: [PATCH] Add haya14busa/action-update-semver@v1 --- .github/workflows/update_semver.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/update_semver.yml diff --git a/.github/workflows/update_semver.yml b/.github/workflows/update_semver.yml new file mode 100644 index 0000000..8e832ec --- /dev/null +++ b/.github/workflows/update_semver.yml @@ -0,0 +1,15 @@ +name: Update Semver +on: + push: + branches-ignore: + - '**' + tags: + - 'v*.*.*' +jobs: + update-semver: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: haya14busa/action-update-semver@v1 + with: + github_token: ${{ secrets.github_token }}