Browse Source

Merge pull request #6412 from acmesh-official/dev

minor
pull/6447/head
neil 4 months ago
committed by GitHub
parent
commit
02cb4764c2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      .github/workflows/wiki-monitor.yml

3
.github/workflows/wiki-monitor.yml

@ -14,7 +14,8 @@ jobs:
echo "User: ${{ github.actor }}" >> wiki-change-msg.txt
echo "Time: $(date '+%Y-%m-%d %H:%M:%S')" >> wiki-change-msg.txt
echo "" >> wiki-change-msg.txt
jq -r '.gollum.pages[] | "Page: \(.html_url) (action: \(.action))"' "$GITHUB_EVENT_PATH" >> wiki-change-msg.txt
cat "$GITHUB_EVENT_PATH"
jq -r '.gollum.pages // [] | .[] | "Page: \(.html_url) (action: \(.action))"' "$GITHUB_EVENT_PATH" >> wiki-change-msg.txt
- name: Create issue to notify Neilpang
uses: peter-evans/create-issue-from-file@v5

Loading…
Cancel
Save