Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/sync-versioned-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
# Extract docs folder from 2.6.x branch
git archive origin/2.6.x -- docs | tar -x -C v2.6-rc/

# Check if there are changes
if git diff --quiet v2.6-rc/; then
# Check if there are changes (including untracked files)
git add v2.6-rc/
if git diff --cached --quiet; then
echo "No changes to sync"
echo "CHANGES_DETECTED=false" >> $GITHUB_ENV
else
Expand Down