GitHub Actions: Fix Update Pipfile.lock workflow (#1562)

* Remove --requirements

* Add commit-message to PRs in pipfile workflow
pull/1565/head
Ewout ter Hoeven 2020-05-25 12:19:57 +02:00 committed by GitHub
parent b8571710e0
commit 2b23111e0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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"