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

* Remove --requirements

* Add commit-message to PRs in pipfile workflow
pull/1565/head
Ewout ter Hoeven 5 years ago committed by GitHub
parent b8571710e0
commit 2b23111e0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/update-pipfile.yml

@ -5,6 +5,7 @@ on:
push: push:
paths: paths:
- 'Pipfile' - 'Pipfile'
- '.github/workflows/update-pipfile.yml'
jobs: jobs:
piplock: piplock:
@ -14,7 +15,7 @@ jobs:
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
- run: pip install wheel - run: pip install wheel
- run: pip install pipenv - run: pip install pipenv
- run: pipenv lock --requirements - run: pipenv lock
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
with: with:
name: "Pipfile lock" name: "Pipfile lock"
@ -23,3 +24,4 @@ jobs:
with: with:
title: "Update Pipfile.lock (dependencies)" title: "Update Pipfile.lock (dependencies)"
branch: update-pipfile branch: update-pipfile
commit-message: "[Bot] Update Pipfile.lock dependencies"

Loading…
Cancel
Save