From e3f9d2cc37041c476f73e5723b199ffd573aeb47 Mon Sep 17 00:00:00 2001 From: Joe Clark <31087804+jc-clark@users.noreply.github.com> Date: Wed, 28 Sep 2022 12:30:51 -0700 Subject: [PATCH] Update content/actions/creating-actions/creating-a-docker-container-action.md --- .../creating-actions/creating-a-docker-container-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/creating-actions/creating-a-docker-container-action.md b/content/actions/creating-actions/creating-a-docker-container-action.md index 4358ddfd7a..cfb19047d5 100644 --- a/content/actions/creating-actions/creating-a-docker-container-action.md +++ b/content/actions/creating-actions/creating-a-docker-container-action.md @@ -121,7 +121,7 @@ Next, the script gets the current time and sets it as an output variable that ac If `entrypoint.sh` executes without any errors, the action's status is set to `success`. You can also explicitly set exit codes in your action's code to provide an action's status. For more information, see "[Setting exit codes for actions](/actions/creating-actions/setting-exit-codes-for-actions)." -3. Make your `entrypoint.sh` file executable by following the below commands on your system. +1. Make your `entrypoint.sh` file executable. Git provides a way to explicitly change the permission mode of a file so that it doesn’t get reset every time there is a clone/fork. Git provides a way to explicitly change the permission mode of a file so that it doesn't get reset every time there is a clone/fork.
The command works as below.