Fix app-breaking typo introduced in commit 8a62bacd2d501aac94a7cfae4d3758c46fd967b7 #10
Workflow file for this run
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: pre-commit | |
on: | |
pull_request | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- id: file_changes | |
uses: trilom/[email protected] | |
with: | |
prNumber: ${{ github.event.number }} | |
output: ' ' | |
- uses: pre-commit/[email protected] | |
name: ruff-pre-commit-run | |
with: | |
extra_args: --files ${{ steps.file_changes.outputs.files }} |