Skip to content
Open
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
@@ -1,3 +1,6 @@
[![Tests](https://github.com/StabilityNexus/Oracle-Solidity/actions/workflows/CI.yml/badge.svg)](https://github.com/StabilityNexus/Oracle-Solidity/actions)
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

# Check for workflow files in .github/workflows/
fd -e yml -e yaml . .github/workflows/ 2>/dev/null || echo "No workflows found"

Repository: DjedAlliance/Oracle-Solidity

Length of output: 96


🏁 Script executed:

# Check if .github/workflows directory exists and list its contents
if [ -d .github/workflows ]; then
  echo "=== Workflow files found ==="
  ls -la .github/workflows/
else
  echo "=== No .github/workflows directory found ==="
fi

Repository: DjedAlliance/Oracle-Solidity

Length of output: 264


🏁 Script executed:

# Check git remote origin to determine actual repository
git config --get remote.origin.url 2>/dev/null || echo "No git remote found"

Repository: DjedAlliance/Oracle-Solidity

Length of output: 123


🏁 Script executed:

# Check for any README or config files that might indicate the correct org
head -20 README.md 2>/dev/null || echo "README.md not found or empty"

Repository: DjedAlliance/Oracle-Solidity

Length of output: 580


Incorrect GitHub organization in badge URL.

The badge URL references StabilityNexus/Oracle-Solidity but the repository is DjedAlliance/Oracle-Solidity. This causes the badge to fetch CI status from the wrong repository and directs users to the wrong repository's CI workflow.

Apply this diff to fix the organization name:

-[![Tests](https://github.com/StabilityNexus/Oracle-Solidity/actions/workflows/CI.yml/badge.svg)](https://github.com/StabilityNexus/Oracle-Solidity/actions)
+[![Tests](https://github.com/DjedAlliance/Oracle-Solidity/actions/workflows/CI.yml/badge.svg)](https://github.com/DjedAlliance/Oracle-Solidity/actions)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
[![Tests](https://github.com/StabilityNexus/Oracle-Solidity/actions/workflows/CI.yml/badge.svg)](https://github.com/StabilityNexus/Oracle-Solidity/actions)
[![Tests](https://github.com/DjedAlliance/Oracle-Solidity/actions/workflows/CI.yml/badge.svg)](https://github.com/DjedAlliance/Oracle-Solidity/actions)
🤖 Prompt for AI Agents
In README.md around lines 1 to 1, the GitHub Actions badge points to the wrong
organization; update the badge URL and link target to use
DjedAlliance/Oracle-Solidity instead of StabilityNexus/Oracle-Solidity so the CI
status and link reference the correct repository and workflow.



# Oracle

A simple oracle with a minimal governance system. It allows multiple owners to post data and allows a majority of the current owners to add more owners or to remove owners.
Expand Down