From 1482317a75673858094b06b922c0b80034a19a08 Mon Sep 17 00:00:00 2001 From: rmanaem Date: Fri, 10 Jan 2025 12:28:08 -0500 Subject: [PATCH] Removed commit step --- .github/workflows/updated_examples.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/updated_examples.yaml b/.github/workflows/updated_examples.yaml index 13190b8d..829ed252 100644 --- a/.github/workflows/updated_examples.yaml +++ b/.github/workflows/updated_examples.yaml @@ -66,22 +66,8 @@ jobs: name: e2e-test-results path: neurobagel_examples/query-tool-results - - name: Check for changes and commit if there are any - run: | - git config --global user.name "Neurobagel Bot" - git config --global user.email "neurobagel-bot[bot]@users.noreply.github.com" - git checkout -b update-query-tool-results - git add query-tool-results - if [[ -n $(git diff --staged) ]]; then - git commit -m "Update query-tool-results with new e2e test results" - git push origin update-query-tool-results - else - echo "No changes to commit" - fi - - name: Create Pull Request id: create_pr - if: steps.commit.outputs.changes uses: peter-evans/create-pull-request@v5 with: token: ${{ steps.generate-token.outputs.token }}