From 689cd8a7eae14cad51551e0a2cb2a5b7ff04e74b Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 2 Apr 2021 09:13:22 -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 73439f9f..6703c4e1 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ Get modified files using [`git diff --diff-filter`](https://git-scm.com/docs/git done - name: Run step when a file changes in a PR relative to the default branch - if: contains(${{ steps.changed-files.outputs.modified_files }}, 'my-file.txt') + if: contains(steps.changed-files.outputs.modified_files, 'my-file.txt') run: | echo "Your file my-file.txt has been modified." - name: Run step when a file is deleted in a PR relative to the default branch - if: contains(${{ steps.changed-files.outputs.deleted_files }}, 'test.txt') + if: contains(steps.changed-files.outputs.deleted_files, 'test.txt') run: | echo "Your test.txt has been deleted."