mirror of
https://github.com/tj-actions/changed-files
synced 2025-02-19 05:23:48 +00:00
fix: bug passing invalid patterns to grep (#453)
This commit is contained in:
parent
6402474c46
commit
72aab29255
1 changed files with 3 additions and 2 deletions
|
@ -147,11 +147,12 @@ runs:
|
|||
INPUT_PATH: ${{ inputs.path }}
|
||||
INPUT_USE_FORK_POINT: ${{ inputs.use_fork_point }}
|
||||
- name: Glob match
|
||||
uses: tj-actions/glob@v7.12
|
||||
uses: tj-actions/glob@v7.14
|
||||
id: glob
|
||||
with:
|
||||
files: ${{ inputs.files }}
|
||||
files-separator: ${{ inputs.files_separator }}
|
||||
escape-paths: true
|
||||
excluded-files: ${{ inputs.files_ignore }}
|
||||
excluded-files-separator: ${{ inputs.files_ignore_separator }}
|
||||
files-from-source-file: ${{ inputs.files_from_source_file }}
|
||||
|
@ -159,7 +160,7 @@ runs:
|
|||
working-directory: ${{ inputs.path }}
|
||||
base-sha: ${{ steps.changed-files-diff-sha.outputs.previous_sha }}
|
||||
sha: ${{ steps.changed-files-diff-sha.outputs.current_sha }}
|
||||
include-deleted-files: "true"
|
||||
include-deleted-files: true
|
||||
separator: "|"
|
||||
- run: |
|
||||
bash $GITHUB_ACTION_PATH/entrypoint.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue