Update .github/workflows/checkScriptStatus.yml: improve user-facing messages and comments, simplify README table assembly (use a fixed header + new rows) and tighten anchor-missing handling, and ensure update_readme.py is executed before the commit/push step. Also small formatting and flow fixes to make the workflow clearer and more robust.
Enhance the checkScriptStatus workflow to add defensive checks and clearer logs: detect when no JS/PY files changed or no Env tags found, verify README.md exists, and print explanatory messages (in Chinese). Tighten anchor validation with explicit error output to avoid corrupting README. Refactor table parsing to skip headers/separators, preserve/update rows, and reassemble the table with a fixed header. Overall prevents silent failures and makes failures easier to diagnose.
Workflow: tighten .github/workflows/checkScriptStatus.yml to require README anchor tags (exit with error if missing) instead of blindly appending; set start/end tag placeholders, filter out old table headers, prepend a standardized table header, collect updated names and append new scripts, and reassemble the file to avoid corrupting README format.
Script: move changhongmeiling.py into daily/, update file comments and User-Agent, remove an unintended miniapp GET/request block, and apply minor formatting fixes.
Move babycare.js into daily/ (added daily/babycare.js and removed top-level babycare.js). Improve .github workflow (checkScriptStatus.yml) to smarterly update README table using anchors, handle JS/PY file changes, and append when anchors missing. Update README.md table entries (added three scripts and cleaned duplicates). Tweak daily scripts: remove hardcoded process.env test assignments in daily/hdl.js and two other scripts, and fix string splitter usage in the non-ASCII-named script. General cleanup and formatting fixes.
Enhance the GitHub Actions workflow that updates the README table: add .py to watched paths, broaden changed-file detection, and support both .js and .py targets. Make the Env name regex more flexible (matches Env(...)), add robust error handling for git diff, check README.md exists, and simplify table parsing/append logic so new scripts are added and existing rows updated correctly. Also tidy comments/spacing and adjust the automated commit message.
Add '**/*.py' to the workflow's paths so the checkScriptStatus.yml job will run when Python files are created or modified. Previously the workflow only triggered on JavaScript file changes.