Skip to content

Commit 9179b7a

Browse files
committed
Update TagBot.yml
1 parent 3512fd1 commit 9179b7a

File tree

1 file changed

+23
-9
lines changed

1 file changed

+23
-9
lines changed

.github/workflows/TagBot.yml

+23-9
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,33 @@
66
name: TagBot
77

88
on:
9-
issue_comment:
10-
types:
11-
- created
12-
workflow_dispatch:
13-
schedule:
14-
- cron: '0 * * * *'
9+
issue_comment:
10+
types:
11+
- created
12+
workflow_dispatch:
13+
inputs:
14+
lookback:
15+
default: 3
16+
17+
permissions:
18+
actions: read
19+
checks: read
20+
contents: write
21+
deployments: read
22+
issues: read
23+
discussions: read
24+
packages: read
25+
pages: read
26+
pull-requests: read
27+
repository-projects: read
28+
security-events: read
29+
statuses: read
1530

1631
jobs:
1732
TagBot:
18-
if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || github.actor == 'JuliaTagBot'
19-
runs-on: [ubuntu-latest]
33+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
34+
runs-on: ubuntu-latest
2035
steps:
2136
- uses: JuliaRegistries/TagBot@v1
2237
with:
2338
token: ${{ secrets.GITHUB_TOKEN }}
24-
lookback: 30

0 commit comments

Comments
 (0)