We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aab078 commit 8ffacafCopy full SHA for 8ffacaf
.github/workflows/TagBot.yml
@@ -0,0 +1,20 @@
1
+name: TagBot
2
+on:
3
+ issue_comment:
4
+ 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
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
19
+
20
+# https://github.com/JuliaRegistries/TagBot/blob/master/example.yml
0 commit comments