Skip to content

Commit

Permalink
ci: Try Fixing SearchLimit
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichaelis committed Nov 29, 2023
1 parent d251ace commit e93449c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
description: |
Search-Limit: Limits number of packages found.
default: 100
required: false
type: number
workflow_call:
inputs:
searchLimit:
default: 100
required: false
type: number

permissions: {}
Expand All @@ -28,7 +30,7 @@ jobs:
env:
NPM_HOST: ${{ needs.env.outputs.npm-host }}
NPM_URL: ${{ needs.env.outputs.npm-url }}
SEARCH_LIMIT: ${{ github.event.inputs.searchLimit }}
SEARCH_LIMIT: ${{ inputs.searchLimit }}
steps:
- id: authorize
name: "NPM Authorization"
Expand Down

0 comments on commit e93449c

Please sign in to comment.