Skip to content
Merged
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
<a href="https://snyk.io/test/github/suitenumerique/docs">
<img alt="MIT License" src="https://snyk.io/test/github/suitenumerique/docs/badge.svg"/>
</a>
<a href="https://digitalpublicgoods.net/r/docs-collaborative-text-editing">
<img src="https://img.shields.io/badge/Verified-DPG-3333AB?logo=data:image/svg%2bxml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iMzMiIHZpZXdCb3g9IjAgMCAzMSAzMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjIwMDggMjEuMzY3OEwxMC4xNzM2IDE4LjAxMjRMMTEuNTIxOSAxNi40MDAzTDEzLjk5MjggMTguNDU5TDE5LjYyNjkgMTIuMjExMUwyMS4xOTA5IDEzLjYxNkwxNC4yMDA4IDIxLjM2NzhaTTI0LjYyNDEgOS4zNTEyN0wyNC44MDcxIDMuMDcyOTdMMTguODgxIDUuMTg2NjJMMTUuMzMxNCAtMi4zMzA4MmUtMDVMMTEuNzgyMSA1LjE4NjYyTDUuODU2MDEgMy4wNzI5N0w2LjAzOTA2IDkuMzUxMjdMMCAxMS4xMTc3TDMuODQ1MjEgMTYuMDg5NUwwIDIxLjA2MTJMNi4wMzkwNiAyMi44Mjc3TDUuODU2MDEgMjkuMTA2TDExLjc4MjEgMjYuOTkyM0wxNS4zMzE0IDMyLjE3OUwxOC44ODEgMjYuOTkyM0wyNC44MDcxIDI5LjEwNkwyNC42MjQxIDIyLjgyNzdMMzAuNjYzMSAyMS4wNjEyTDI2LjgxNzYgMTYuMDg5NUwzMC42NjMxIDExLjExNzdMMjQuNjI0MSA5LjM1MTI3WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==" alt="DPG Badge"/>
</a>
Comment on lines +20 to +22

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

📐 Maintainability & Code Quality | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for CHANGELOG files in the repository and verify they contain an [Unreleased] entry
fd -i changelog -t f | head -5

# If found, check for [Unreleased] section and recent DPG-related entries
if [ -f "CHANGELOG.md" ]; then
  echo "=== CHANGELOG.md content (first 50 lines) ===" 
  head -50 CHANGELOG.md
fi

Repository: suitenumerique/docs

Length of output: 1630


🏁 Script executed:

# Check the git status/diff to see if the README.md DPG badge addition is new
git diff HEAD -- README.md | head -100

Repository: suitenumerique/docs

Length of output: 157


🏁 Script executed:

# Check recent git history for README.md
git log --oneline -20 -- README.md

# Also check git status
git status README.md

Repository: suitenumerique/docs

Length of output: 265


Add CHANGELOG entry for the DPG badge addition to README.

The DPG badge was added to README.md (commit 5cedaa3), but no corresponding entry exists in the [Unreleased] section of CHANGELOG.md. Add an entry documenting this documentation enhancement.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` around lines 20 - 22, The DPG badge link and image were added to
README.md but there is no corresponding entry documenting this change in
CHANGELOG.md. Navigate to the [Unreleased] section in CHANGELOG.md and add an
entry under the appropriate category (typically under "Added" or "Changed") that
documents the addition of the DPG badge to the README as a documentation
enhancement.

</p>

<p align="center">
Expand Down
Loading