Skip to content

Commit face85d

Browse files
committed
Update the TagBot workflow.
Update TagBot to be compatible with changes to GitHub actions. See the following link for more information: https://discourse.julialang.org/t/ann-required-updates-to-tagbot-yml/49249
1 parent 59fb785 commit face85d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/TagBot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
79
runs-on: ubuntu-latest
10+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
811
steps:
912
- uses: JuliaRegistries/TagBot@v1
1013
with:

0 commit comments

Comments
 (0)