Skip to content

Commit

Permalink
feat(docs): disable last update timestamps (#9987)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Mar 6, 2024
1 parent 3e31ae4 commit 6d3f087
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: acryldata/sane-checkout-action@v3
# We explicitly don't use acryldata/sane-checkout-action because docusaurus runs
# git commands to determine the last change date for each file.
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions docs-website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ module.exports = {
}),
numberPrefixParser: false,
// TODO: make these work correctly with the doc generation
showLastUpdateAuthor: true,
showLastUpdateTime: true,
showLastUpdateAuthor: false,
showLastUpdateTime: false,
},
blog: false,
theme: {
Expand Down

0 comments on commit 6d3f087

Please sign in to comment.