We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f39761f commit 45b3b31Copy full SHA for 45b3b31
.github/workflows/build-check-install.yaml
@@ -540,13 +540,15 @@ jobs:
540
} fi
541
542
test_dir="tests/testthat/"
543
- git version
+ git branch
544
+ git pull main
545
git branch
546
git status
547
548
# Get the list of R files that have changed
549
# https://github.com/cloudnativeto/envoy/blob/de67446fa8af973761bb4716f5143d73643baf8b/.github/workflows/get_build_targets.sh_bak#L9
- files=$(git diff --name-only HEAD FETCH_HEAD -- "$test_dir"/*.R R/*.R)
550
+ files=$( git diff main.. --name-only -- "$test_dir"/*.R R/*.R )
551
+ echo "$files"
552
553
if [ -z "$files" ]
554
then {
0 commit comments