Compare commits

..

1 Commits

Author SHA1 Message Date
ca0978fa43 Fixing auto-checkout issues
All checks were successful
Merge-Checker / build_and_test (pull_request) Successful in 25s
2025-05-21 18:33:55 -04:00

View File

@@ -57,7 +57,9 @@ jobs:
BRANCH_NAME="${{ github.event.pull_request.head.ref }}" BRANCH_NAME="${{ github.event.pull_request.head.ref }}"
git stash git stash
git checkout "$BRANCH_NAME" "origin/$BRANCH_NAME" echo "Checking out source branch $BRANCH_NAME"
git fetch origin "$BRANCH_NAME"
git checkout "$BRANCH_NAME"
git pull git pull
echo "Checking if last commit was a timing update" echo "Checking if last commit was a timing update"
@@ -70,8 +72,7 @@ jobs:
echo "Last commit name was: $LAST_COMMIT_MSG" echo "Last commit name was: $LAST_COMMIT_MSG"
fi fi
echo "Checking out source branch $BRANCH_NAME"
git fetch origin "$BRANCH_NAME"
git stash pop git stash pop
git add unit-tests/timing-results/matrix-timing-tests.txt git add unit-tests/timing-results/matrix-timing-tests.txt