fix(ci): remove orphan <<<<<<< HEAD merge-conflict markers in ci.yml #1
Reference in New Issue
Block a user
Delete Branch "devin/1776555011-fix-ci-conflict-markers"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Removes the seven orphan
<<<<<<< HEADlines in.github/workflows/ci.ymlthat were left behind by a broken merge resolution.Why
Each
<<<<<<< HEADsits directly after asteps:line with no matching=======/>>>>>>>counterpart, so the file is not valid YAML and GitHub Actions cannot parse the workflow. Until this is cleaned up, CI never runs on any push or PR in this repo.Evidence
Before (snippet):
After: orphan line deleted; workflow steps otherwise unchanged.
Verified locally:
Full repo scan confirmed ci.yml was the only file with real conflict markers — the
====rows inscripts/*.share decorative banner output, not merge markers:Scope
Workflow-only change. 1 file, 7 deletions, zero logic changes. Does not touch
webapp/(broken gitlink),orchestrator/, orcontracts/.Not in this PR (tracked separately)
webapp/is a gitlink (160000 dac160403d…) with no.gitmodulesand the target commit is not in repo history. Needs to be rehydrated orgit rm'd — needs a decision from @defiQUG on where the real webapp source lives.contracts/npm run compilecurrently fails withTS5109 moduleResolution mismatchinhardhat.config.ts. Separate fix.Requested by @defiQUG as part of reviewing the Devin env config for this repo.
View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.