From d79ea110efd5c4d6ffa6e0bce373c9800afe1080 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Wed, 30 Jul 2025 22:00:32 -0700 Subject: [PATCH] try 1002 --- .../workflows/integration-vision-tests.yml | 27 +++++++++++-------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/integration-vision-tests.yml b/.github/workflows/integration-vision-tests.yml index 48ca984b7..63da0d62f 100644 --- a/.github/workflows/integration-vision-tests.yml +++ b/.github/workflows/integration-vision-tests.yml @@ -119,19 +119,24 @@ jobs: git status --porcelain tests/integration/recordings/ git status - if [[ -n $(git status --porcelain tests/integration/recordings/) ]]; then - echo "New recordings detected, committing and pushing" - git add tests/integration/recordings/ - git commit -m "Update recordings" + # if [[ -n $(git status --porcelain tests/integration/recordings/) ]]; then + # echo "New recordings detected, committing and pushing" + # git add tests/integration/recordings/ + # git commit -m "Update recordings" - # re-sync with whatever is now on GitHub - git fetch origin ${{ github.head_ref }} - git rebase origin/${{ github.head_ref }} + # # re-sync with whatever is now on GitHub + # git fetch origin ${{ github.head_ref }} + # git rebase origin/${{ github.head_ref }} - git push --force-with-lease origin HEAD:${{ github.head_ref }} - else - echo "No recording changes" - fi + # git push --force-with-lease origin HEAD:${{ github.head_ref }} + # else + # echo "No recording changes" + # fi + + - name: Commit and push recordings + uses: stefanzweifel/git-auto-commit-action@v6 + with: + commit_message: "style: auto-format from CI" - name: Write inference logs to file if: ${{ always() }}