Newer
Older
thu-learn-downloader-optimized / .github / workflows / pre-commit.yaml
@github-actions[bot] github-actions[bot] on 17 Feb 2024 436 bytes ci: sync with template repository
name: pre-commit

on:
  push:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}

jobs:
  pre-commit:
    name: pre-commit
    permissions:
      contents: write
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: pre-commit
        uses: liblaf/template/.github/actions/pre-commit@main
        with:
          autofix: true
          token: ${{ secrets.GH_TOKEN }}