Merge pull request #13374 from PennyDreadfulMTG/fix-errs #2593
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: Repin pip dependencies | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pipenv' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pipenv | |
if [ -f Pipfile ]; then pipenv sync --dev; fi | |
- name: Run repip | |
run: pipenv run python dev.py repip | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: Unpin git dependency | |
title: Unpin git dependency | |
branch: repip | |
labels: merge when ready | |
token: ${{ secrets.VORPAL_PAT }} |