Default to running TagBot daily (#154)
This commit is contained in:
parent
f276d58127
commit
29c9f6b46f
|
@ -1,7 +1,7 @@
|
|||
name: TagBot
|
||||
on:
|
||||
schedule:
|
||||
- cron: 0 * * * *
|
||||
- cron: 0 0 * * *
|
||||
jobs:
|
||||
TagBot:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
TagBot(;
|
||||
file="$(contractuser(default_file("github", "workflows", "TagBot.yml")))",
|
||||
destination="TagBot.yml",
|
||||
cron="0 * * * *",
|
||||
cron="0 0 * * *",
|
||||
token=Secret("GITHUB_TOKEN"),
|
||||
ssh=nothing,
|
||||
ssh_password=nothing,
|
||||
|
@ -37,7 +37,7 @@ Adds GitHub release support via [TagBot](https://github.com/JuliaRegistries/TagB
|
|||
@with_kw_noshow struct TagBot <: BasicPlugin
|
||||
file::String = default_file("github", "workflows", "TagBot.yml")
|
||||
destination::String = "TagBot.yml"
|
||||
cron::String = "0 * * * *"
|
||||
cron::String = "0 0 * * *"
|
||||
token::Secret = Secret("GITHUB_TOKEN")
|
||||
ssh::Union{Secret, Nothing} = nothing
|
||||
ssh_password::Union{Secret, Nothing} = nothing
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: TagBot
|
||||
on:
|
||||
schedule:
|
||||
- cron: 0 * * * *
|
||||
- cron: 0 0 * * *
|
||||
jobs:
|
||||
TagBot:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: TagBot
|
||||
on:
|
||||
schedule:
|
||||
- cron: 0 * * * *
|
||||
- cron: 0 0 * * *
|
||||
jobs:
|
||||
TagBot:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: TagBot
|
||||
on:
|
||||
schedule:
|
||||
- cron: 0 * * * *
|
||||
- cron: 0 0 * * *
|
||||
jobs:
|
||||
TagBot:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: TagBot
|
||||
on:
|
||||
schedule:
|
||||
- cron: 0 * * * *
|
||||
- cron: 0 0 * * *
|
||||
jobs:
|
||||
TagBot:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
@ -44,7 +44,7 @@ const LICENSES_DIR = joinpath(TEMPLATES_DIR, "licenses")
|
|||
TagBot:
|
||||
file: "$(joinpath(TEMPLATES_DIR, "github", "workflows", "TagBot.yml"))"
|
||||
destination: "TagBot.yml"
|
||||
cron: "0 * * * *"
|
||||
cron: "0 0 * * *"
|
||||
token: Secret("GITHUB_TOKEN")
|
||||
ssh: nothing
|
||||
ssh_password: nothing
|
||||
|
|
Loading…
Reference in New Issue