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