Skip to content

Commit

Permalink
ci: limit prose action to 300 changed files
Browse files Browse the repository at this point in the history
There is a limitation on the action that can't be executed when the PR has more than 300 files.
Limiting this so the job does not fail in bigger PRs.
  • Loading branch information
DSil committed Jul 25, 2024
1 parent 812ddaf commit ead371a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint-prose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
jobs:
prose:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.changed_files < 301 }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit ead371a

Please sign in to comment.