diff --git a/.github/workflows/daily-regression.yml b/.github/workflows/daily-regression.yml index 06ba90ba8..01d6fd66d 100644 --- a/.github/workflows/daily-regression.yml +++ b/.github/workflows/daily-regression.yml @@ -194,9 +194,10 @@ jobs: } if ! git diff --quiet --cached --exit-code; then + updatedFiles=$(git diff --cached --name-only) echo "File changed" git commit -m "[deps] Bump T1 dependencies" git push origin "$branch" --force-with-lease nix run '.#gh' -- \ - pr create --title "Bump T1 dependencies" --body "Updated: $(git diff --cached --name-only)" + pr create --title "Bump T1 dependencies" --body "Updated: $updatedFiles" fi