Skip to content

Commit 40ef1a7

Browse files
authored
chore: Add TagBot action (#611)
1 parent fb16fab commit 40ef1a7

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.github/workflows/TagBot.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
23+
jobs:
24+
TagBot:
25+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Tag DifferentiationInterface
29+
uses: JuliaRegistries/TagBot@v1
30+
with:
31+
token: ${{ secrets.GITHUB_TOKEN }}
32+
ssh: ${{ secrets.DOCUMENTER_KEY }}
33+
subdir: DifferentiationInterface
34+
- name: Tag DifferentiationInterfaceTest
35+
uses: JuliaRegistries/TagBot@v1
36+
with:
37+
token: ${{ secrets.GITHUB_TOKEN }}
38+
ssh: ${{ secrets.DOCUMENTER_KEY }}
39+
subdir: DifferentiationInterfaceTest

0 commit comments

Comments
 (0)