You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -386,6 +386,11 @@ To access more examples, navigate to the [Examples](#examples-) section.
386
386
# Default: "false"
387
387
exclude_submodules: ''
388
388
389
+
# Exclude symlinks from changed files.
390
+
# Type: boolean
391
+
# Default: "false"
392
+
exclude_symlinks: ''
393
+
389
394
# Fail when the initial diff
390
395
# fails.
391
396
# Type: boolean
@@ -650,6 +655,12 @@ To access more examples, navigate to the [Examples](#examples-) section.
650
655
# Default: "false"
651
656
skip_initial_fetch: ''
652
657
658
+
# Do not fail when base
659
+
# and head SHAs are identical.
660
+
# Type: boolean
661
+
# Default: "false"
662
+
skip_same_sha: ''
663
+
653
664
# Tags pattern to ignore.
654
665
# Type: string
655
666
tags_ignore_pattern: ''
@@ -736,6 +747,7 @@ To access more examples, navigate to the [Examples](#examples-) section.
736
747
| <aname="output_all_modified_files_count"></a>[all\_modified\_files\_count](#output_all_modified_files_count)| string | Returns the number of `all_modified_files`|
737
748
| <aname="output_all_old_new_renamed_files"></a>[all\_old\_new\_renamed\_files](#output_all_old_new_renamed_files)| string | Returns only files that are <br>Renamed and lists their old <br>and new names. **NOTE:** This <br>requires setting `include_all_old_new_renamed_files` to `true`. <br>Also, keep in mind that <br>this output is global and <br>wouldn't be nested in outputs <br>generated when the `*_yaml_*` input <br>is used. (R) |
738
749
| <aname="output_all_old_new_renamed_files_count"></a>[all\_old\_new\_renamed\_files\_count](#output_all_old_new_renamed_files_count)| string | Returns the number of `all_old_new_renamed_files`|
750
+
| <aname="output_any_added"></a>[any\_added](#output_any_added)| string | Returns `true` when any of <br>the filenames provided using the <br>`files*` or `files_ignore*` inputs have been added. |
739
751
| <aname="output_any_changed"></a>[any\_changed](#output_any_changed)| string | Returns `true` when any of <br>the filenames provided using the <br>`files*` or `files_ignore*` inputs have changed. This <br>defaults to `true` when no <br>patterns are specified. i.e. *includes a combination of all added, copied, modified and renamed files (ACMR)*. |
740
752
| <aname="output_any_deleted"></a>[any\_deleted](#output_any_deleted)| string | Returns `true` when any of <br>the filenames provided using the <br>`files*` or `files_ignore*` inputs have been deleted. <br>This defaults to `true` when <br>no patterns are specified. (D) |
741
753
| <aname="output_any_modified"></a>[any\_modified](#output_any_modified)| string | Returns `true` when any of <br>the filenames provided using the <br>`files*` or `files_ignore*` inputs have been modified. <br>This defaults to `true` when <br>no patterns are specified. i.e. <br>*includes a combination of all added, copied, modified, renamed, and deleted files (ACMRD)*. |
Copy file name to clipboardExpand all lines: action.yml
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -227,6 +227,14 @@ inputs:
227
227
description: "Exclude changes to submodules."
228
228
required: false
229
229
default: "false"
230
+
exclude_symlinks:
231
+
description: "Exclude symlinks from changed files."
232
+
required: false
233
+
default: "false"
234
+
skip_same_sha:
235
+
description: "Do not fail when base and head SHAs are identical."
236
+
required: false
237
+
default: "false"
230
238
fetch_missing_history_max_retries:
231
239
description: "Maximum number of retries to fetch missing history."
232
240
required: false
@@ -250,6 +258,8 @@ outputs:
250
258
description: "Returns only files that are Added (A)."
251
259
added_files_count:
252
260
description: "Returns the number of `added_files`"
261
+
any_added:
262
+
description: "Returns `true` when any of the filenames provided using the `files*` or `files_ignore*` inputs have been added."
253
263
copied_files:
254
264
description: "Returns only files that are Copied (C)."
255
265
copied_files_count:
@@ -324,7 +334,7 @@ outputs:
324
334
description: "Returns all changed YAML keys when the `files_yaml` input is used. i.e. key that contains any path that has either been added, copied, modified, and renamed (ACMR)"
0 commit comments