Skip to content

Commit

Permalink
fix(ci): resolve input str -> num conversion (#20169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Aug 7, 2024
1 parent cf24a19 commit 2129fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/call-clear-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
scripts-ref: v0.11.6
dry-run: ${{ github.event_name == 'pull_request' }}
pattern: ${{ inputs.pattern || 'pypi_wheels' }} # setting str in case of PR / debugging
age-days: ${{ inputs.age-days || 0 }} # setting 0 in case of PR / debugging
age-days: ${{ fromJSON(inputs.age-days) || 0 }} # setting 0 in case of PR / debugging

0 comments on commit 2129fdf

Please sign in to comment.