Skip to content

Commit

Permalink
ci: Add a GH workflow for bumping version automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsergio committed May 3, 2024
1 parent e39e41c commit 7f72be1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
branches:
- master
pull_request:
branches:
- master

name: Version Bump PR

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Setup git author name
uses: fregante/setup-git-user@v2

- name: Create PR to bump version
run: |
release-please release-pr --token=${{ secrets.GITHUB_TOKEN }} --repo-url=KDAB/vscode-qttest

0 comments on commit 7f72be1

Please sign in to comment.