Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 0 additions & 6 deletions .coderabbit 2.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ jobs:
contents: read
steps:
- uses: actions/checkout@v6.0.2
- name: Reject iCloud sync-conflict files
# iCloud Drive appends " 2", " 3", … to filenames on a sync conflict.
# These must never be committed; fail the build if any are tracked.
run: |
matches="$(git ls-files | grep -E ' [0-9]+(\.[^/]+)?$' || true)"
if [ -n "$matches" ]; then
echo "::error::iCloud sync-conflict files are tracked in git:"
echo "$matches"
exit 1
fi
- uses: actions/setup-python@v6.2.0
with:
python-version: "3.11"
Expand Down
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,11 @@ Icon?
.Spotlight-V100
.Trashes
.VolumeIcon.icns
Thumbs.db
Thumbs.db

# iCloud Drive sync-conflict copies (e.g. "CONTEXT 2.md", ".coderabbit 2.yaml").
# iCloud appends " 2", " 3", … to a filename on a sync conflict; never commit them.
# Patterns cover names with and without an extension. CI also rejects them.
*.icloud
* [0-9].*
* [0-9]
71 changes: 0 additions & 71 deletions CONTEXT 2.md

This file was deleted.

37 changes: 0 additions & 37 deletions plugins/codeforerunner/skills/forerunner-arch-review/SKILL 2.md

This file was deleted.

37 changes: 0 additions & 37 deletions skills/forerunner-arch-review/SKILL 2.md

This file was deleted.

121 changes: 0 additions & 121 deletions src/codeforerunner/prompts/tasks/arch-review 2.md

This file was deleted.