Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
groups:
# Group all GitHub Actions PRs into a single PR:
all-github-actions:
patterns:
- "*"
5 changes: 4 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,7 @@ makedocs(modules = [PositiveIntegrators],

deploydocs(repo = "github.com/NumericalMathematics/PositiveIntegrators.jl",
devbranch = "main",
push_preview = true)
# Only push previews if all the relevant environment variables are non-empty.
push_preview = all(!isempty,
(get(ENV, "GITHUB_TOKEN", ""),
get(ENV, "DOCUMENTER_KEY", ""))))