Skip to content

Commit 60291e3

Browse files
authored
Enable manual triggering of release workflow
Added workflow_dispatch event to allow manual triggering with branch input.
1 parent 2329775 commit 60291e3

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ name: Release — Version Bump & Publish
33
# Runs on every direct push to main (human or PR merge).
44
# Bot-authored commits are skipped to prevent infinite loops.
55
on:
6-
push:
7-
branches: [main]
6+
workflow_dispatch:
7+
inputs:
8+
branch:
9+
description: 'Default Branch Name'
10+
required: true
11+
default: 'main'
812

913
permissions:
1014
contents: write # needed to push the release branch and create tags

0 commit comments

Comments
 (0)