From 29ddf08adcad5006bcae632409b3e979cd88edf9 Mon Sep 17 00:00:00 2001 From: Andrea Bocchieri <58187203+abocchieri@users.noreply.github.com> Date: Mon, 9 Dec 2024 11:58:45 +0100 Subject: [PATCH] added automatic version bumper in develop branch --- .github/workflows/version-bump.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/version-bump.yml diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml new file mode 100644 index 0000000..5e722f8 --- /dev/null +++ b/.github/workflows/version-bump.yml @@ -0,0 +1,20 @@ +name: Auto Dev Version Bumper + +on: + push: + branches: + - develop + +jobs: + version-bump: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Run auto-dev-version-bumper + uses: LorenzoMugnai/auto-dev-version-bumper@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}