Add a default value for wait-for-processing.

This commit is contained in:
Chris Gavin 2021-11-17 12:15:11 +00:00
parent 49fc4c9b40
commit 823bb21bbb
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
4 changed files with 7 additions and 5 deletions

View file

@ -6,7 +6,7 @@ inputs:
description: |
The SARIF file or directory of SARIF files to be uploaded to GitHub code scanning.
See https://docs.github.com/en/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github#uploading-a-code-scanning-analysis-with-github-actions
for information on the maximum number of results and maximum file size supported by code scanning.
for information on the maximum number of results and maximum file size supported by code scanning.
required: false
default: '../results'
checkout_path:
@ -22,7 +22,8 @@ inputs:
required: false
wait-for-processing:
description: If true, the Action will wait for the uploaded SARIF to be processed before completing.
required: false
required: true
default: "false"
runs:
using: 'node12'
main: '../lib/upload-sarif-action.js'