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 d87370f commit acfaa22Copy full SHA for acfaa22
.github/workflows/TagBot.yml
@@ -0,0 +1,17 @@
1
+name: TagBot
2
+on:
3
+ issue_comment: # THIS BIT IS NEW
4
+ types:
5
+ - created
6
+ workflow_dispatch:
7
+jobs:
8
+ TagBot:
9
+ # THIS 'if' LINE IS NEW
10
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11
+ # NOTHING BELOW HAS CHANGED
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: JuliaRegistries/TagBot@v1
15
+ with:
16
+ token: ${{ secrets.GITHUB_TOKEN }}
17
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
0 commit comments