diff --git a/.github/workflows/auto-bump-release.yml b/.github/workflows/auto-bump-release.yml new file mode 100644 index 0000000..bde48dd --- /dev/null +++ b/.github/workflows/auto-bump-release.yml @@ -0,0 +1,24 @@ +name: Auto bump version +on: + push: + branches: + - release + +jobs: + version: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Use Node.js 20.x + uses: actions/setup-node@v3 + with: + node-version: 20.x + - run: npm install + - name: Bumping version + id: bump + uses: jpb06/bump-package@latest + with: + major-keywords: breaking,major + minor-keywords: feat,minor + patch-keywords: fix,chore \ No newline at end of file