Skip to content

Commit ae29011

Browse files
committed
Fix: trigger only on labeled event to avoid duplicate runs
1 parent 1442839 commit ae29011

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/auto-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Auto Release from Issue
22

3-
# Trigger when an issue is opened or labeled with 'release'
3+
# Trigger when an issue is labeled with 'release'
44
on:
55
issues:
6-
types: [opened, labeled]
6+
types: [labeled]
77
# Also trigger when PR is merged (to create tag after merge)
88
pull_request:
99
types: [closed]

0 commit comments

Comments
 (0)