Skip to content

Commit e276414

Browse files
authored
Update TagBot.yml
1 parent 3cbae79 commit e276414

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/TagBot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
510
jobs:
611
TagBot:
12+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
713
runs-on: ubuntu-latest
814
steps:
915
- uses: JuliaRegistries/TagBot@v1
1016
with:
1117
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)