Skip to content

Commit 7f17237

Browse files
authored
Update TagBot workflow configuration
1 parent 06562ff commit 7f17237

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/TagBot.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,22 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
description: "[DEPRECATED] No longer has any effect"
10+
default: "3"
711
jobs:
812
TagBot:
913
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-slim
1115
steps:
1216
- uses: JuliaRegistries/TagBot@v1
1317
with:
1418
token: ${{ secrets.GITHUB_TOKEN }}
19+
# For commits that modify workflow files: SSH key enables tagging, but
20+
# releases require manual creation. For full automation of such commits,
21+
# use a PAT with `workflow` scope instead of GITHUB_TOKEN.
22+
# See: https://github.com/JuliaRegistries/TagBot#commits-that-modify-workflow-files
1523
ssh: ${{ secrets.DOCUMENTER_KEY }}
24+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
25+
# changelog_format: github # 'custom' (default), 'github', or 'conventional'

0 commit comments

Comments
 (0)