From 16dd7208381cacf9e03c7cadb5286fd69f5a93b1 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sun, 9 May 2021 06:19:06 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19035be0..e929cc63 100644 --- a/README.md +++ b/README.md @@ -146,12 +146,12 @@ jobs: - name: Run step if all files listed above have changed if: steps.changed-files-specific.outputs.all_changed == 'true' run: | - echo "Both my-file.txt and test.txt have changed." + echo "All files listed above has changed." - name: Run step if any of the listed files above change if: steps.changed-files-specific.outputs.any_changed == 'true' run: | - echo "Either my-file.txt or test.txt have changed." + echo "One or more files listed above has changed." ```