Skip to content

Commit 73b4edf

Browse files
committed
fix: add tag trigger to main.yml workflow
Added missing `tags: ['v*']` trigger to main.yml to enable the release workflow chain when version tags are pushed. This aligns with txaio, autobahn-python, zlmdb, cfxdb, and wamp-xbr which all have this trigger configured. Also added `workflow_dispatch` for manual triggering. Note: This work was completed with AI assistance (Claude Code).
1 parent fd58b52 commit 73b4edf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ on:
44
push:
55
branches:
66
- master
7+
tags:
8+
- 'v*' # Trigger on version tags for release workflow chain
79
pull_request:
810
branches:
911
- master
12+
workflow_dispatch:
1013

1114
permissions:
1215
contents: read

0 commit comments

Comments
 (0)