We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4d435 commit 228a52eCopy full SHA for 228a52e
.github/workflows/TagBot.yml
@@ -4,6 +4,9 @@ on:
4
types:
5
- created
6
workflow_dispatch:
7
+ inputs:
8
+ lookback:
9
+ default: "3"
10
jobs:
11
TagBot:
12
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +15,7 @@ jobs:
15
- uses: JuliaRegistries/TagBot@v1
13
16
with:
14
17
token: ${{ secrets.GITHUB_TOKEN }}
- ssh: ${{ secrets.DOCUMENTER_KEY }}
18
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
19
+ subdir: JuliaBUGS
20
+ lookback: ${{ github.event.inputs.lookback }}
21
+
0 commit comments