Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
groups:
# Group all GitHub Actions PRs into a single PR:
all-github-actions:
patterns:
- "*"
ignore:
- dependency-name: "julia-actions/julia-downgrade-compat"
versions: [ ">=2.0.0" ]
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", ""))))
Comment on lines +185 to +188
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What exactly does this do? In which cases does it prevent pushing previews?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Loading