mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-05-28 04:15:51 -04:00
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.
This commit is contained in:
parent
52e051bb02
commit
d366b7e4fc
1 changed files with 2 additions and 0 deletions
2
.github/workflows/wiki-monitor.yml
vendored
2
.github/workflows/wiki-monitor.yml
vendored
|
|
@ -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…
Reference in a new issue