We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c869aa commit 1fe1825Copy full SHA for 1fe1825
.github/workflows/TagBot.yml
@@ -1,11 +1,15 @@
1
-name: TagBot
2
-on:
3
- schedule:
4
- - cron: 0 * * * *
5
-jobs:
6
- TagBot:
7
- runs-on: ubuntu-latest
8
- steps:
9
- - uses: JuliaRegistries/TagBot@v1
10
- with:
11
- token: ${{ secrets.GITHUB_TOKEN }}
+name: TagBot
+on:
+ issue_comment:
+ types:
+ - created
+ workflow_dispatch:
+jobs:
+ TagBot:
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
+ runs-on: ubuntu-latest
+ steps:
12
+ - uses: JuliaRegistries/TagBot@v1
13
+ with:
14
+ token: ${{ secrets.GITHUB_TOKEN }}
15
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
0 commit comments