Skip to content

Commit e97f4ed

Browse files
authored
Setup TagBot (#4)
1 parent 9e5f714 commit e97f4ed

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/TagBot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
push:
7+
branches:
8+
- actions/trigger/TagBot
9+
workflow_dispatch:
10+
jobs:
11+
TagBot:
12+
if: >-
13+
github.event_name == 'workflow_dispatch' ||
14+
github.event_name == 'push' ||
15+
github.actor == 'JuliaTagBot'
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: JuliaRegistries/TagBot@v1
19+
with:
20+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)