Update Pipfile.lock #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Update Pipfile.lock" | |
on: | |
schedule: | |
- cron: '0 8 * * 1' # Every monday on 8:00 UTC | |
push: | |
paths: | |
- 'Pipfile' | |
- '.github/workflows/update-pipfile.yml' | |
jobs: | |
piplock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: pip install -U wheel pipenv | |
- run: pipenv lock | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: "Pipfile lock" | |
path: Pipfile.lock | |
- uses: peter-evans/create-pull-request@v3 | |
with: | |
title: "Update Pipfile.lock (dependencies)" | |
branch: update-pipfile | |
commit-message: "[Bot] Update Pipfile.lock dependencies" |