Skip to content

Commit

Permalink
ci: manual implementation of the diff action
Browse files Browse the repository at this point in the history
  • Loading branch information
necipallef committed Sep 25, 2024
1 parent b1fcf2c commit b137b12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e_test_for_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Get changed files
id: testing-behavior
run: |
git fetch origin {{ GITHUB_BASE_REF }}
diff=$(git diff --name-only --diff-filter=AM origin/{{ GITHUB_BASE_REF }}..HEAD)
git fetch origin $GITHUB_BASE_REF
diff=$(git diff --name-only --diff-filter=AM origin/$GITHUB_BASE_REF$..HEAD)
echo $diff
echo "ADDED_MODIFIED=$diff" >> "$GITHUB_OUTPUT"
for changed_file in $diff; do
Expand Down

0 comments on commit b137b12

Please sign in to comment.