We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b9af9 commit 148cb4eCopy full SHA for 148cb4e
1 file changed
.github/workflows/TagBot.yml
@@ -0,0 +1,22 @@
1
+name: TagBot
2
+on:
3
+ issue_comment:
4
+ types:
5
+ - created
6
+ workflow_dispatch:
7
+ inputs:
8
+ lookback:
9
+ default: "3"
10
+permissions:
11
+ actions: read
12
+ contents: write
13
+ issues: read
14
+ pull-requests: read
15
+jobs:
16
+ TagBot:
17
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: JuliaRegistries/TagBot@v1
21
+ with:
22
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments