Skip to content

Commit a787771

Browse files
committed
Auto-push: 2025-11-20 04:05:17 - Changes: ~ .github/workflows/sync-cursor-rules.yml
1 parent 35865e7 commit a787771

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/sync-cursor-rules.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
# JOB 2: THE REPORTER (Failures Only)
126126
# ------------------------------------------------------------------
127127
notify-discord:
128-
needs: sync-configuration
128+
needs: [sync-configuration, update-readme]
129129
if: always()
130130
runs-on: ubuntu-latest
131131
steps:
@@ -214,4 +214,18 @@ jobs:
214214
git push
215215
else
216216
echo "✨ No changes to structure"
217-
fi
217+
fi
218+
219+
# 📝 Report Failure
220+
- name: Report Failure
221+
if: failure()
222+
run: |
223+
echo "README Structure Update" > "failed_readme_update.txt"
224+
225+
- name: Upload Artifact
226+
if: failure()
227+
uses: actions/upload-artifact@v4
228+
with:
229+
name: failure-readme
230+
path: failed_*.txt
231+
retention-days: 1

0 commit comments

Comments
 (0)