Skip to content

Merge pull request #40 from GetWVKeys/dependabot/pip/certifi-2024.7.4 #236

Merge pull request #40 from GetWVKeys/dependabot/pip/certifi-2024.7.4

Merge pull request #40 from GetWVKeys/dependabot/pip/certifi-2024.7.4 #236

Workflow file for this run

name: Run isort
on:
- push
permissions: write-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- uses: isort/isort-action@master
with:
configuration: "--profile black"
- name: Commit changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A && git diff-index --cached --quiet HEAD || git commit -m 'isort'
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}