From 8ee8240380bea15c275e94d9c6c45fc67acc51ad Mon Sep 17 00:00:00 2001 From: "Bryan.Jenks" Date: Mon, 22 Jul 2024 10:36:34 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=F0=9F=8F=BBIMPROVE:=20make=20actio?= =?UTF-8?q?n=20callable=20via=20workflow=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/update-deployment-issue.yml | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-deployment-issue.yml b/.github/workflows/update-deployment-issue.yml index 8f84d3b..a723570 100644 --- a/.github/workflows/update-deployment-issue.yml +++ b/.github/workflows/update-deployment-issue.yml @@ -22,10 +22,32 @@ on: required: true default: "1.0.10" description: The version of the application to be deployed to the environment - debug: - required: false + debug: + required: false default: false description: more verbose output for debugging purposes + workflow_call: + inputs: + organization: + required: false + default: "CoveredCA" + description: Name of the organization the project is in + project-number: + required: false + default: 5 + description: The number of the project from the project web url + application-name: + required: true + default: "cca-salesforce-sapi" + description: The name of the application the deployment issue was created for + environment: + required: true + default: "dev" + description: The enmviropnment the deployment issue is calling for + version: + required: true + default: "1.0.10" + description: The version of the application to be deployed to the environment jobs: updateIssue: