Skip to content

Merge pull request #13163 from PennyDreadfulMTG/competition-metagame #3699

Merge pull request #13163 from PennyDreadfulMTG/competition-metagame

Merge pull request #13163 from PennyDreadfulMTG/competition-metagame #3699

Workflow file for this run

name: Sort python imports
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
pipenv install
- name: Sort Imports
run: pipenv run python dev.py sort --fix
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: Sort Imports
title: Sort Imports
branch: sort
labels: merge when ready
token: ${{ secrets.VORPAL_PAT }}