From 6f3998408784b964b46592175c6c9d9271014e04 Mon Sep 17 00:00:00 2001 From: githubofkrishnadhas Date: Tue, 25 Jun 2024 19:45:48 +0530 Subject: [PATCH] "Updated workflow to set environment variable OWNERS and use it in echo statement" --- .github/workflows/add_owner_to_app_registration.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add_owner_to_app_registration.yaml b/.github/workflows/add_owner_to_app_registration.yaml index 767f2fa..86bf255 100644 --- a/.github/workflows/add_owner_to_app_registration.yaml +++ b/.github/workflows/add_owner_to_app_registration.yaml @@ -47,7 +47,10 @@ jobs: terraform apply --auto-approve "plan.out" - name: Owners added for App registration - run: echo "App registration owners - ${{ github.event.inputs.app_registration_owners }}" + env: + OWNERS: ${{ github.event.inputs.app_registration_owners }} + run: | + echo "App registration owners - $OWNERS" - name: Process Completed run: echo "Completed...." \ No newline at end of file