From 50ae48e01867a169d286701009b7e574284693e4 Mon Sep 17 00:00:00 2001 From: Cody Lee Date: Wed, 2 Aug 2023 14:50:26 -0500 Subject: [PATCH] update readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 202ae6d..2c131eb 100644 --- a/README.md +++ b/README.md @@ -12,20 +12,25 @@ It would be expected to use this action for other downstream conditional steps t ### `github-token` **Required** The github token, for the most part you can just use `${{ secrets.GITHUB_TOKEN }}`. + **Example** `${{ secrets.GITHUB_TOKEN }}` ### `separator` **Required** The separator to use on output. + **Default** `,` + **Example** `${{ secrets.GITHUB_TOKEN }}` ### `ignore_file_patterns` **Optional** A newline separated list of regex paths to ignore. + **Default** `` + **Example** ``` foo/.*\.json @@ -35,7 +40,9 @@ bar/.*\.ini ### `only_file_patterns` **Optional** A newline separated list of regex paths to only consider. This is applied before `ignore_file_patterns`. + **Default** `` + **Example** ``` foo/.*\.json @@ -45,7 +52,9 @@ bar/.*\.ini ### `filter_by_status` **Optional** A newline separated list of status to filter by, options are: `added,removed,modified,renamed,copied,changed,unchanged`. This is applied before `ignore_file_patterns`. + **Default** `` - meaning all. + **Example** ``` added