Bump emoji from 2.7.0 to 2.8.0 #2722
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: 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 }} |