Skip to content

fix: remove invalid null last_update front matter causing Docusaurus build failure - #260

Draft
hide212131 with Copilot wants to merge 4 commits into
mainfrom
copilot/fix-build-docusaurus-job
Draft

fix: remove invalid null last_update front matter causing Docusaurus build failure#260
hide212131 with Copilot wants to merge 4 commits into
mainfrom
copilot/fix-build-docusaurus-job

Conversation

Copilot AI commented Aug 16, 2026

Copy link
Copy Markdown
Contributor

Docusaurus v3.10.1 rejects last_update: null in front matter, causing the entire build to fail when loading doc metadata.

Root Cause

147 files in docs/ had bare last_update: keys (no value), which YAML parses as null. Docusaurus validates this field strictly — it must be either an author string or a date string/object.

Before:

---
title: JHipsterドメイン言語(JDL) - アプリケーション
slug: /jdl/applications
last_update:
date: 2026-05-23T12:00:00-00:00
---

After:

---
title: JHipsterドメイン言語(JDL) - アプリケーション
slug: /jdl/applications
date: 2026-05-23T12:00:00-00:00
---

Changes

  • Removed empty last_update: lines from all 147 affected .mdx/.md files under docs/

Co-authored-by: hide212131 <3602892+hide212131@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix failing GitHub Actions job Build Docusaurus fix: remove invalid null last_update front matter causing Docusaurus build failure Aug 16, 2026
Copilot AI requested a review from hide212131 August 16, 2026 07:18
…47 files)

Co-authored-by: hide212131 <3602892+hide212131@users.noreply.github.com>
Co-authored-by: hide212131 <3602892+hide212131@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants