We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2329775 commit 60291e3Copy full SHA for 60291e3
1 file changed
.github/workflows/release.yml
@@ -3,8 +3,12 @@ name: Release — Version Bump & Publish
3
# Runs on every direct push to main (human or PR merge).
4
# Bot-authored commits are skipped to prevent infinite loops.
5
on:
6
- push:
7
- branches: [main]
+ workflow_dispatch:
+ inputs:
8
+ branch:
9
+ description: 'Default Branch Name'
10
+ required: true
11
+ default: 'main'
12
13
permissions:
14
contents: write # needed to push the release branch and create tags
0 commit comments