Skip to content

Bump google-api-python-client from 2.95.0 to 2.96.0 #2709

Bump google-api-python-client from 2.95.0 to 2.96.0

Bump google-api-python-client from 2.95.0 to 2.96.0 #2709

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