From 805c8767c60f371b95fb103863f3df007ee6ba19 Mon Sep 17 00:00:00 2001 From: Ross Martin Date: Tue, 24 Aug 2021 21:03:53 -0700 Subject: [PATCH] Allow setting description for a build --- action.yml | 3 +++ entrypoint.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index d0f1620..8df38cd 100644 --- a/action.yml +++ b/action.yml @@ -18,6 +18,9 @@ inputs: description: Convox Console host address required: false default: console.convox.com + description: + description: Convox build description + required: false runs: using: docker image: Dockerfile \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh index 18fa51f..3eeae70 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -9,4 +9,4 @@ then export CONVOX_HOST=$INPUT_HOST fi export CONVOX_RACK=$INPUT_RACK -convox deploy --app $INPUT_APP --wait +convox deploy --app $INPUT_APP --description "$INPUT_DESCRIPTION" --wait