Skip to content

Commit 148cb4e

Browse files
Sébastien LoiselSébastien Loisel
authored andcommitted
Add TagBot workflow
1 parent f9b9af9 commit 148cb4e

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/TagBot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)