From 75a97e3f7b9ca5f69ece6b62795db99780f8124f Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Thu, 3 Nov 2022 06:31:50 -0600 Subject: [PATCH] Update action.yml --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 474c3328..e364216c 100644 --- a/action.yml +++ b/action.yml @@ -77,10 +77,10 @@ inputs: description: "Output list of changed files in a JSON formatted string which can be used for matrix jobs." required: false default: "false" - max_fetch_depth: - description: "Max limit for fetching branch history. **NOTE**: This can be adjusted to resolve errors with insufficient history." + fetch_depth: + description: "Limit depth of target branch history fetched. **NOTE**: This can be adjusted to resolve errors with insufficient history." required: false - default: "300" + default: "30" outputs: added_files: @@ -171,7 +171,7 @@ runs: INPUT_SINCE: ${{ inputs.since }} INPUT_UNTIL: ${{ inputs.until }} INPUT_PATH: ${{ inputs.path }} - INPUT_MAX_FETCH_DEPTH: ${{ inputs.max_fetch_depth }} + INPUT_FETCH_DEPTH: ${{ inputs.fetch_depth }} - name: Glob match uses: tj-actions/glob@v15 id: glob