Skip to content

Commit 90fb3ff

Browse files
authored
Add workflow_dispatch trigger to TagBot.yml
1 parent 4662d6a commit 90fb3ff

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/TagBot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,18 @@ on:
33
issue_comment:
44
types:
55
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
610
jobs:
711
TagBot:
12+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
813
runs-on: ubuntu-latest
914
steps:
1015
- uses: JuliaRegistries/TagBot@v1
1116
with:
1217
token: ${{ secrets.GITHUB_TOKEN }}
18+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
19+
ssh: ${{ secrets.DOCUMENTER_KEY }}
20+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

0 commit comments

Comments
 (0)