From f99d2956bd5c069001311aed8b3ebb3b84bae556 Mon Sep 17 00:00:00 2001 From: Kirill Leonov Date: Sat, 24 Aug 2024 22:17:27 +0300 Subject: [PATCH] new CI task for bump minor --- .github/workflows/bump_minor.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/bump_minor.yml diff --git a/.github/workflows/bump_minor.yml b/.github/workflows/bump_minor.yml new file mode 100644 index 0000000..3cbac05 --- /dev/null +++ b/.github/workflows/bump_minor.yml @@ -0,0 +1,31 @@ +name: Bump minor version + +on: + workflow_dispatch: + +jobs: + bump: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + - name: Install dependencies + run: bundle install + + - name: bump + run: bundle exec rake bump_minor + + - name: Commit changes + uses: EndBug/add-and-commit@v9 + with: + message: "bump new version" + add: . + committer_name: "GitHub Actions" + committer_email: "actions@github.com" + push: true + branch: master