File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments