From 19ba6b3860f18b027978d5cf7440ac7507cfb501 Mon Sep 17 00:00:00 2001 From: databasedav <31483365+databasedav@users.noreply.github.com> Date: Sat, 8 Feb 2025 19:47:17 -0800 Subject: [PATCH] add attempt-limit to action.yml --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 23348871b..ac97fc721 100644 --- a/action.yml +++ b/action.yml @@ -90,6 +90,11 @@ inputs: description: 'Silences the action output preventing it from displaying git messages.' required: false + attempt-limit: + description: 'How many rebase attempts to make before suspending the job. This option defaults to `3` and may be useful to increase when there are multiple deployments in a single branch.' + required: false + default: 3 + outputs: deployment-status: description: 'The status of the deployment that indicates if the run failed or passed. Possible outputs include: success|failed|skipped'