Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make snapshot bot upload the changes instead of commit #5271

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
WIP
  • Loading branch information
pierremtb committed Feb 5, 2025
commit 465e71c12ffa527792c0c30de0809f3c2bbc2f76
7 changes: 5 additions & 2 deletions .github/workflows/e2e-snapshot-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,11 @@ jobs:
- name: check for changes
id: git-check
run: |
changes=$(git diff --name-only e2e/playwright/snapshot-tests.spec.ts-snapshots)
echo "changes=$changes" >> $GITHUB_OUTPUT
{
echo 'changes<<EOF'
git diff --name-only e2e/playwright/snapshot-tests.spec.ts-snapshots
echo EOF
} >> "$GITHUB_OUTPUT"

# only upload artifacts if there's actually changes
- name: Upload changes, if any
Expand Down