Skip to content

Commit

Permalink
fix: Only trigger merge to main when full-release-tags (e.g., v1.0, v…
Browse files Browse the repository at this point in the history
…1.0.2, ...) are pushed but not when pre-release-tags (e.g., v1.0a1, v2.0rc1, ...) are pushed.
  • Loading branch information
Nico-AP committed Dec 2, 2024
1 parent 896484e commit 55a1d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/merge-dev-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Merge to Main
on:
push:
tags:
- v*
- 'v*[0-9].*[0-9]'

jobs:
build-test:
Expand Down

0 comments on commit 55a1d0c

Please sign in to comment.