From 17ca5bb3e554d4d9b631e09414186b64b6e64cd6 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 12 Jun 2023 18:07:35 -0600 Subject: [PATCH] Update action.yml --- action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 5be7d614..e9384f12 100644 --- a/action.yml +++ b/action.yml @@ -142,23 +142,23 @@ outputs: all_changed_files: description: "Returns all changed files i.e. *a combination of all added, copied, modified and renamed files (ACMR)*" any_changed: - description: "Returns `true` when any of the filenames provided using the `files` input has changed. i.e. *using a combination of all added, copied, modified and renamed files (ACMR)*." + description: "Returns `true` when any of the filenames provided using the `files*` or `files_ignore*` inputs has changed. i.e. *using a combination of all added, copied, modified and renamed files (ACMR)*." only_changed: - description: "Returns `true` when only files provided using the `files` input has changed. i.e. *using a combination of all added, copied, modified and renamed files (ACMR)*." + description: "Returns `true` when only files provided using the `files*` or `files_ignore*` inputs has changed. i.e. *using a combination of all added, copied, modified and renamed files (ACMR)*." other_changed_files: description: "Returns all other changed files not listed in the files input i.e. *using a combination of all added, copied, modified and renamed files (ACMR)*." all_modified_files: description: "Returns all changed files i.e. *a combination of all added, copied, modified, renamed and deleted files (ACMRD)*." any_modified: - description: "Returns `true` when any of the filenames provided using the `files` input has been modified. i.e. *using a combination of all added, copied, modified, renamed, and deleted files (ACMRD)*." + description: "Returns `true` when any of the filenames provided using the `files*` or `files_ignore*` inputs has been modified. i.e. *using a combination of all added, copied, modified, renamed, and deleted files (ACMRD)*." only_modified: - description: "Returns `true` when only files provided using the `files` input has been modified. (ACMRD)." + description: "Returns `true` when only files provided using the `files*` or `files_ignore*` inputs has been modified. (ACMRD)." other_modified_files: description: "Returns all other modified files not listed in the files input i.e. *a combination of all added, copied, modified, and deleted files (ACMRD)*" any_deleted: - description: "Returns `true` when any of the filenames provided using the `files` input has been deleted. (D)" + description: "Returns `true` when any of the filenames provided using the `files*` or `files_ignore*` inputs has been deleted. (D)" only_deleted: - description: "Returns `true` when only files provided using the `files` input has been deleted. (D)" + description: "Returns `true` when only files provided using the `files*` or `files_ignore*` inputs has been deleted. (D)" other_deleted_files: description: "Returns all other deleted files not listed in the files input i.e. *a combination of all deleted files (D)*"