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 3663e4f commit b1fcf2cCopy full SHA for b1fcf2c
.github/workflows/e2e_test_for_prs.yml
@@ -9,11 +9,13 @@ jobs:
9
outputs:
10
NEED_TO_RUN_TESTS: ${{ steps.decision.outputs.NEED_TO_RUN_TESTS }}
11
steps:
12
+ - name: Git clone
13
+ uses: actions/checkout@v4
14
- name: Get changed files
15
id: testing-behavior
16
run: |
17
git fetch origin {{ GITHUB_BASE_REF }}
- diff=$(git diff --name-only --diff-filter=AM origin/{{ GITHUB_BASE_REF }}..HEAD | tr '\n' ' ')
18
+ diff=$(git diff --name-only --diff-filter=AM origin/{{ GITHUB_BASE_REF }}..HEAD)
19
echo $diff
20
echo "ADDED_MODIFIED=$diff" >> "$GITHUB_OUTPUT"
21
for changed_file in $diff; do
0 commit comments