Skip to content

Bump google-auth-httplib2 from 0.1.1 to 0.2.0 #2808

Bump google-auth-httplib2 from 0.1.1 to 0.2.0

Bump google-auth-httplib2 from 0.1.1 to 0.2.0 #2808

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@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 }}