Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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 @@ -182,4 +182,7 @@ makedocs(
deploydocs(repo = "github.com/trixi-framework/Trixi.jl",
deploy_repo = "github.com/trixi-framework/TrixiDocumentation",
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", ""))))
Loading