Skip to content

Fix Pages build failure by removing orphaned submodule gitlink#136

Draft
Copilot wants to merge 2 commits into
mainfrom
copilot/fix-github-actions-build-job
Draft

Fix Pages build failure by removing orphaned submodule gitlink#136
Copilot wants to merge 2 commits into
mainfrom
copilot/fix-github-actions-build-job

Conversation

Copilot AI commented Jun 12, 2026

Copy link
Copy Markdown

The GitHub Actions build job for Pages was failing during checkout because the repository contained a submodule gitlink (internship2026) without a corresponding .gitmodules entry. This change removes the invalid gitlink so recursive submodule checkout can complete.

  • Root cause

    • Repository index tracked internship2026 as a submodule entry (160000 mode), but no submodule URL mapping existed.
  • Change made

    • Removed the orphaned gitlink entry for internship2026 from the repository index/tree.
    • No workflow logic or application code was modified.
  • Why this unblocks CI

    • actions/checkout with submodules: recursive no longer hits:
      fatal: No url found for submodule path 'internship2026' in .gitmodules.
# Before: orphaned gitlink present
git ls-files -s | awk '$1==160000 {print}'
# 160000 <sha> 0 internship2026

# After: no orphaned submodule entries remain
git ls-files -s | awk '$1==160000 {print}'
# (no output)

Copilot AI changed the title [WIP] Fix failing GitHub Actions job build Fix Pages build failure by removing orphaned submodule gitlink Jun 12, 2026
Copilot AI requested a review from VishnuGanugula June 12, 2026 16:20
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