From 404216273a90cf3bb298e063821332cfb0f17cde Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Tue, 8 Apr 2025 11:01:28 +0530 Subject: [PATCH] chore: Fix PR action in e2e-timings --- .github/workflows/e2e-timings.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/e2e-timings.yml b/.github/workflows/e2e-timings.yml index 1796a0608..6b681bbd8 100644 --- a/.github/workflows/e2e-timings.yml +++ b/.github/workflows/e2e-timings.yml @@ -44,16 +44,13 @@ jobs: SPLIT: 1 SPLIT_INDEX: 0 SPLIT_FILE: 'cypress/timings.json' - - name: Commit changes - uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4 - with: - add: 'cypress/timings.json' - author_name: 'github-actions[bot]' - author_email: '41898282+github-actions[bot]@users.noreply.github.com' - message: 'chore: update E2E timings' - new_branch: update-timings - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + - name: Commit and create pull request + uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e with: + add-paths: | + cypress/timings.json + commit-message: 'chore: update E2E timings' branch: update-timings title: Update E2E Timings + delete-branch: true + sign-commits: true