Skip to content

Scheduled update to addressbooks deployments #766

Scheduled update to addressbooks deployments

Scheduled update to addressbooks deployments #766

Workflow file for this run

name: Lint
permissions:
contents: write
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
token: ${{ steps.app-token.outputs.token }}
- name: Black
uses: psf/black@stable
with:
options: "--verbose"
version: "24.4.0"
- name: Auto commit
uses: stefanzweifel/git-auto-commit-action@v7.1.0
with:
commit_message: "style: ci lint with `black`"