Skip to content

Commit

Permalink
Fix linter not running (microsoft#933)
Browse files Browse the repository at this point in the history
### Motivation and Context

Black wasn't running because it depended on paths-filter which was
renamed in a previous commit.
  • Loading branch information
mkarle authored May 11, 2023
1 parent ab625af commit 0b1e286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
matrix:
python-version: ["3.8"]
runs-on: ubuntu-latest
needs: paths-filter
if: needs.paths-filter.outputs.output1 == 'true'
needs: check-for-python-changes
if: needs.check-for-python-changes.outputs.output1 == 'true'
timeout-minutes: 5
steps:
- run: echo "/root/.local/bin" >> $GITHUB_PATH
Expand Down

0 comments on commit 0b1e286

Please sign in to comment.