Skip to content

Commit e17ab7b

Browse files
committed
another fix
1 parent f260904 commit e17ab7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs-replicator-updates.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
working-directory: docs
4848
run: |
4949
# Check if there are changed files and store the result in resources/diff-check.log
50-
# Check against the PR branch if it exists, otherwise against the main
50+
# Check against the PR branch if it exists, otherwise against the master
5151
# Store the result in resources/diff-check.log and store the diff count in the GitHub Action output "diff-count"
5252
mkdir -p resources
53-
(git diff --name-only origin/replicator-coverage-updates src/data/replicator/coverage.json 2>/dev/null || git diff --name-only origin/${{ github.event.inputs.targetBranch || 'main' }} src/data/replicator/coverage.json 2>/dev/null) | tee resources/diff-check.log
53+
(git diff --name-only origin/replicator-coverage-updates src/data/replicator/coverage.json 2>/dev/null || git diff --name-only origin/${{ github.event.inputs.targetBranch || 'master' }} src/data/replicator/coverage.json 2>/dev/null) | tee resources/diff-check.log
5454
echo "diff-count=$(cat resources/diff-check.log | wc -l)" >> $GITHUB_OUTPUT
5555
cat resources/diff-check.log
5656

0 commit comments

Comments
 (0)