From 4c0a8f32a59264bba07fb62bb906ea1e00647e4a Mon Sep 17 00:00:00 2001 From: mcpengelly Date: Mon, 17 Jun 2019 11:34:13 -0400 Subject: [PATCH] [fix-typos] fix typos in README andentrypoint.sh --- README.md | 3 +-- entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a4a9ddd..b4e8825 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,11 @@ action "Assignee to reviewer" { "GITHUB_TOKEN" ] - # add this line if you want to continue running parrallel github actions even if this action is skipped/not needed + # add this line if you want to continue running parallel github actions even if this action is skipped/not needed env = { REVIEWERS_UNMODIFIED_EXIT_CODE = "0" } } -} ``` ## Demo diff --git a/entrypoint.sh b/entrypoint.sh index f2e8fe1..5d856d4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -25,7 +25,7 @@ assignee=$(jq --raw-output .assignee.login "$GITHUB_EVENT_PATH") # Github Actions will mark a check as "neutral" (neither failed/succeeded) when you exit with code 78 # But this will terminate any other Actions running in parallel in the same workflow. -# Configuring this Environment Variable `REVIEWERS_UNMODIFIED_EXIT_CODE=0` if no branch was deleted will let your workflow continue. +# Configuring this Environment Variable `REVIEWERS_UNMODIFIED_EXIT_CODE=0` if no reviewer was added or deleted. # Docs: https://developer.github.com/actions/creating-github-actions/accessing-the-runtime-environment/#exit-codes-and-statuses REVIEWERS_UNMODIFIED_EXIT_CODE=${REVIEWERS_UNMODIFIED_EXIT_CODE:-78}