Skip to content

Commit

Permalink
Remove !ENV from extra vars in mkdocs (value will be None if empty, i…
Browse files Browse the repository at this point in the history
…nstead of falling back to default)
  • Loading branch information
MisterCalvin committed Feb 19, 2025
1 parent 3b40d58 commit e7c999a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ extra:
vars:
username: !ENV GITHUB_REPOSITORY_OWNER
repo_name: !ENV GITHUB_REPOSITORY
request_url: !ENV [REQUEST_URL, "request.example.com"]
plex_url: !ENV [PLEX_URL, "plex.example.com"]
plex_libraries: !ENV [PLEX_LIBRARIES, "Movies and TV Shows"]
noreply_email: !ENV [NOREPLY_EMAIL, "noreply@example.com"]
request_url: "request.example.com"
plex_url: "plex.example.com"
plex_libraries: "Movies and TV Shows"
noreply_email: "noreply@example.com"

env:
branch: !ENV [GITHUB_REF_NAME, 'main']
Expand Down

0 comments on commit e7c999a

Please sign in to comment.