pipenv-update #114
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: pipenv-update | |
on: | |
schedule: | |
- cron: '8 22 * * 1' | |
workflow_dispatch: | |
jobs: | |
pipenv-update: | |
runs-on: [self-hosted, public, linux, x64] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- run: | | |
python -m pip install --upgrade pipenv wheel | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
pipenv --python 3.7 update | |
git add -u | |
git commit -m "update pipenv packages" | |
env: | |
GITHUB_TOKEN: ${{ github.PAT_TOKEN }} | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
title: '[AUTO-PR] Update pipenv packages' | |
body: | | |
bump pipenv packages | |
- Auto-generated by [pipenv-update github action](https://github.com/bridgecrewio/airiam/blob/master/.github/workflows/pipenv-update.yml) | |
labels: automated pr | |
branch: pipenvfix | |
branch-suffix: timestamp |