Skip to content

Commit

Permalink
feat(gha): add tag bumper
Browse files Browse the repository at this point in the history
  • Loading branch information
aamkye committed May 6, 2024
1 parent c46413f commit a7e2647
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tag_bumper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches:
- main
tags:
- 'v?*.*.*'
pull_request:
branches:
- main
types:
- labeled
- unlabeled
- opened
- reopened
- synchronize

jobs:
tag_bumper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: bumper
uses: inetum-poland/action-bumper@v2.0.6
with:
fail_if_no_bump: true
bump_semver: true

0 comments on commit a7e2647

Please sign in to comment.