Skip to content

Commit 6938103

Browse files
authored
Add lookback input to TagBot workflow
Added input parameter 'lookback' with default value.
1 parent 914d2f2 commit 6938103

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/TagBot.yml

Lines changed: 5 additions & 0 deletions
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,6 @@ jobs:
1215
- uses: JuliaRegistries/TagBot@v1
1316
with:
1417
token: ${{ secrets.GITHUB_TOKEN }}
18+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
1519
ssh: ${{ secrets.DOCUMENTER_KEY }}
20+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

0 commit comments

Comments
 (0)