From d13697703832d60a5c5362f351a979583361b7a5 Mon Sep 17 00:00:00 2001 From: rettigl Date: Tue, 24 Oct 2023 23:28:17 +0200 Subject: [PATCH] remove variables for testing --- .github/workflows/update_dependencies.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/update_dependencies.yml b/.github/workflows/update_dependencies.yml index 62fa278b..860d035b 100644 --- a/.github/workflows/update_dependencies.yml +++ b/.github/workflows/update_dependencies.yml @@ -1,4 +1,4 @@ -name: Generate requirements.txt for readthedocs +name: Update depencies in poetry lockfile on: schedule: @@ -26,18 +26,13 @@ jobs: - name: "Update poetry lock file" id: update run: | - update_output=$(poetry run poetry update) - echo "update_output=$update_output" >> $GITHUB_OUTPUT - status=$(git status | grep poetry.lock) - echo "status=$status" >> $GITHUB_OUTPUT + poetry run poetry update # create pull request if necessary - name: "Create Pull Request" uses: peter-evans/create-pull-request@v5 - if: ${{ steps.update.outputs.status != '' }} with: commit-message: Update dependencies title: "Update dependencies" body: | - Dependency updates - ${{ steps.update.outputs.update_output }}