Skip to content

Bump @babel/eslint-parser from 7.22.9 to 7.22.10 #2705

Bump @babel/eslint-parser from 7.22.9 to 7.22.10

Bump @babel/eslint-parser from 7.22.9 to 7.22.10 #2705

Workflow file for this run

name: Sort python imports
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
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@v5
with:
commit-message: Sort Imports
title: Sort Imports
branch: sort
labels: merge when ready
token: ${{ secrets.VORPAL_PAT }}