Browse Source

Fix diff in wiki notifications (use full clone)

The checkout action fetches one single commit, so attempts to find previous states of a page result in error. Adding fetch-depth:0 to the configuration fetches all commits and makes finding the previous commit that changed a page possible in the github action.
pull/6495/head
Jacobo de Vera 2 months ago
committed by GitHub
parent
commit
d366b7e4fc
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/wiki-monitor.yml

2
.github/workflows/wiki-monitor.yml

@ -12,6 +12,7 @@ jobs:
with:
repository: ${{ github.repository }}.wiki
path: wiki
fetch-depth: 0
- name: Generate wiki change message
run: |
@ -58,3 +59,4 @@ jobs:
Loading…
Cancel
Save