Skip to content

Commit 3356583

Browse files
doublegateclaude
andcommitted
fix(ci): force-add gitignored OperationConfig.json in upstream sync
OperationConfig.json is in .gitignore (generated file), so git add refuses it. Use git add -f to include the regenerated config in the sync commit. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 50e0851 commit 3356583

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/upstream-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ jobs:
402402
DELETED_COUNT: ${{ steps.changes.outputs.deleted_count }}
403403
run: |
404404
git add src/core/operations/
405-
git add src/core/config/OperationConfig.json
405+
git add -f src/core/config/OperationConfig.json
406406
git add tests/mcp/baseline.json
407407
408408
COMMIT_MSG="chore(upstream): selective sync from CyberChef $TARGET

0 commit comments

Comments
 (0)