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 0e07af1 commit 8083827Copy full SHA for 8083827
1 file changed
.github/workflows/TagBot.yml
@@ -0,0 +1,20 @@
1
+name: TagBot
2
+
3
+on:
4
+ issue_comment:
5
+ types:
6
+ - created
7
+ workflow_dispatch:
8
+ inputs:
9
+ lookback:
10
+ default: "3"
11
12
+jobs:
13
+ TagBot:
14
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: JuliaRegistries/TagBot@v1
18
+ with:
19
+ token: ${{ secrets.GITHUB_TOKEN }}
20
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
0 commit comments