File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments