Skip to content

Commit 228a52e

Browse files
fix TagBot (#377)
closed #375
1 parent 7e4d435 commit 228a52e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/TagBot.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
710
jobs:
811
TagBot:
912
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +15,7 @@ jobs:
1215
- uses: JuliaRegistries/TagBot@v1
1316
with:
1417
token: ${{ secrets.GITHUB_TOKEN }}
15-
ssh: ${{ secrets.DOCUMENTER_KEY }}
18+
ssh: ${{ secrets.DOCUMENTER_KEY }}
19+
subdir: JuliaBUGS
20+
lookback: ${{ github.event.inputs.lookback }}
21+

0 commit comments

Comments
 (0)