From 7a204f370d53a47c3b9df130cf1bead1ae74d894 Mon Sep 17 00:00:00 2001 From: Jay Bazuzi Date: Mon, 20 May 2024 21:59:29 -0700 Subject: [PATCH] . e need to push to a branch --- .github/workflows/Update Python Dependencies.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Update Python Dependencies.yml b/.github/workflows/Update Python Dependencies.yml index 1c088e3..7158016 100644 --- a/.github/workflows/Update Python Dependencies.yml +++ b/.github/workflows/Update Python Dependencies.yml @@ -16,7 +16,6 @@ jobs: run: | git config --global user.name 'github-actions' git config --global user.email 'github-actions@github.com' - git checkout -b update-python-dependencies-${{ github.run_id }} - uses: actions/setup-python@v5 with: python-version: '3.11' @@ -27,6 +26,8 @@ jobs: git commit -am "- r Update Python dependencies" - name: Create Pull Request run: | + git checkout -b update-python-dependencies-${{ github.run_id }} + git push -u origin update-python-dependencies-${{ github.run_id }} gh pr create -B main --fill env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}