From d0c84ff3c27a9eceac6e7122a58b92b6e0a13f50 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 25 May 2020 12:19:57 +0200 Subject: [PATCH] GitHub Actions: Fix Update Pipfile.lock workflow (#1562) * Remove --requirements * Add commit-message to PRs in pipfile workflow old-commit-hash: 2b23111e0e3eeb10019023d74f177e8e21b37cd5 --- .github/workflows/update-pipfile.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-pipfile.yml b/.github/workflows/update-pipfile.yml index 018eb9e12..5fdbdddad 100644 --- a/.github/workflows/update-pipfile.yml +++ b/.github/workflows/update-pipfile.yml @@ -5,6 +5,7 @@ on: push: paths: - 'Pipfile' + - '.github/workflows/update-pipfile.yml' jobs: piplock: @@ -14,7 +15,7 @@ jobs: - uses: actions/setup-python@v2 - run: pip install wheel - run: pip install pipenv - - run: pipenv lock --requirements + - run: pipenv lock - uses: actions/upload-artifact@v2 with: name: "Pipfile lock" @@ -23,3 +24,4 @@ jobs: with: title: "Update Pipfile.lock (dependencies)" branch: update-pipfile + commit-message: "[Bot] Update Pipfile.lock dependencies"