generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collect and report number of changes
- Loading branch information
Showing
11 changed files
with
376 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: 'Paths Changes Filter' | ||
name: 'Paths Changes Filter And Diff Stat' | ||
description: 'Execute your workflow steps only if relevant files are modified.' | ||
author: 'Michal Dorner <[email protected]>' | ||
author: 'Michal Dorner <[email protected]>, Boris Lykah<[email protected]>' | ||
inputs: | ||
token: | ||
description: 'GitHub Access Token' | ||
|
@@ -36,6 +36,16 @@ inputs: | |
Backslash escapes every potentially unsafe character. | ||
required: false | ||
default: none | ||
stat: | ||
description: | | ||
Enables listing of that enables output of the file change statistics per filter, similar to `git diff --shortstat`. | ||
If some changes do not match any filter, the output includes an additional entry with the filter name 'other'. | ||
'none' - Disables listing of stats (default). | ||
'csv' - Coma separated list that has name of filter, count of additions, count of deletions, count of changed files. | ||
If needed it uses double quotes to wrap name of filter with unsafe characters. For example, `"some filter",12,7,2`. | ||
'json' - Serialized as JSON object where the filter names are keys. For example, `{"some filter": {"additionCount": 12, "deletionCount": 7, "fileCount": 2}}` | ||
required: false | ||
default: none | ||
initial-fetch-depth: | ||
description: | | ||
How many commits are initially fetched from base branch. | ||
|
Oops, something went wrong.