Skip to content

Commit 426893f

Browse files
authored
Add TagBot support (#13)
1 parent d8fcaa4 commit 426893f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/TagBot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
permissions:
8+
actions: read
9+
checks: read
10+
contents: write
11+
deployments: read
12+
issues: read
13+
discussions: read
14+
packages: read
15+
pages: read
16+
pull-requests: read
17+
repository-projects: read
18+
security-events: read
19+
statuses: read
20+
jobs:
21+
TagBot:
22+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: JuliaRegistries/TagBot@v1
26+
with:
27+
ssh: ${{ secrets.DOCUMENTER_KEY }}
28+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)