Update wfgy-problemmap-bot.yml

This commit is contained in:
PSBigBig + MiniPS 2026-03-08 16:37:53 +08:00 committed by GitHub
parent 5bb51638ef
commit a6b75ced58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,6 +17,8 @@ jobs:
- name: Generate ProblemMap scan
run: |
mkdir -p automation
{
echo "# WFGY ProblemMap Scan"
echo
@ -28,12 +30,12 @@ jobs:
echo
echo "Total ProblemMap docs:"
find ProblemMap -type f | wc -l
} > problemmap-scan.md
} > automation/problemmap-scan.md
- name: Commit report
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add problemmap-scan.md
git add automation/problemmap-scan.md
git diff --staged --quiet || git commit -m "bot: update problemmap scan"
git push