Skip to content

Commit

Permalink
feat: add support for excluding matched directories (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Dec 29, 2022
1 parent 0883366 commit 8bb2cb2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions action.yml
Expand Up @@ -95,6 +95,10 @@ inputs:
description: "Directory to store output files."
required: false
default: ".github/outputs"
match_directories:
description: "Indicates whether to include match directories"
default: "true"
required: true

outputs:
added_files:
Expand Down Expand Up @@ -209,6 +213,7 @@ runs:
base-sha: ${{ steps.changed-files-diff-sha.outputs.previous_sha }}
sha: ${{ steps.changed-files-diff-sha.outputs.current_sha }}
diff: ${{ steps.changed-files-diff-sha.outputs.diff }}
match-directories: ${{ inputs.match_directories }}
include-deleted-files: true
separator: "|"
- run: |
Expand Down

0 comments on commit 8bb2cb2

Please sign in to comment.