There was an error while loading. Please reload this page.
2 parents 4470400 + d120298 commit 7ba27b6Copy full SHA for 7ba27b6
1 file changed
.github/workflows/TagBot.yml
@@ -1,11 +1,23 @@
1
name: TagBot
2
on:
3
- schedule:
4
- - cron: 0 0 * * *
+ issue_comment:
+ types:
5
+ - created
6
+ workflow_dispatch:
7
+ inputs:
8
+ lookback:
9
+ default: "3"
10
jobs:
11
TagBot:
12
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
13
runs-on: ubuntu-latest
14
steps:
15
- uses: JuliaRegistries/TagBot@v1
16
with:
17
token: ${{ secrets.GITHUB_TOKEN }}
18
+ # For commits that modify workflow files: SSH key enables tagging, but
19
+ # releases require manual creation. For full automation of such commits,
20
+ # use a PAT with `workflow` scope instead of GITHUB_TOKEN.
21
+ # See: https://github.com/JuliaRegistries/TagBot#commits-that-modify-workflow-files
22
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
23
+ # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
0 commit comments