From f613a60dcad710e0cc49bc6ef7fc9310a9622d9b Mon Sep 17 00:00:00 2001 From: Benjamin Millhouse Date: Fri, 24 Mar 2023 08:57:51 -0400 Subject: [PATCH 1/7] Update action.yml Setting the `images` input as required is causing validation errors in my GitHub Actions extension. Per the description, it seems like the value should actually be set to `required: false` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f4c1d8eae..d3a8a2de6 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ inputs: default: '.' images: description: "Applies to Web App Containers only: Specify the fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For multi-container scenario multiple container image names can be provided (multi-line separated)" - required: true + required: false configuration-file: description: 'Applies to Web App Containers only: Path of the Docker-Compose file. Should be a fully qualified path or relative to the default working directory. Required for multi-container scenario' required: false From e3a5974b84ba8d7d32b92193681f23a9ccdd7fcd Mon Sep 17 00:00:00 2001 From: root Date: Mon, 21 Aug 2023 17:15:49 +0530 Subject: [PATCH 2/7] First Commit --- .github/workflows/pr_check_webapp_dotnet_windows.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pr_check_webapp_dotnet_windows.yml b/.github/workflows/pr_check_webapp_dotnet_windows.yml index ec465a4bb..b9039ad18 100644 --- a/.github/workflows/pr_check_webapp_dotnet_windows.yml +++ b/.github/workflows/pr_check_webapp_dotnet_windows.yml @@ -1,5 +1,4 @@ name: pr_check_webapp_dotnet_windows - on: push: branches: From a82418cece4e16ff9be2c0185f46c3883e8d9af0 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 21 Aug 2023 17:28:25 +0530 Subject: [PATCH 3/7] asdasd --- .github/workflows/pr_check_webapp_dotnet_windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr_check_webapp_dotnet_windows.yml b/.github/workflows/pr_check_webapp_dotnet_windows.yml index b9039ad18..24c449313 100644 --- a/.github/workflows/pr_check_webapp_dotnet_windows.yml +++ b/.github/workflows/pr_check_webapp_dotnet_windows.yml @@ -81,3 +81,5 @@ jobs: app-name: ${{ env.AZURE_WEBAPP_NAME }} # Replace with your app name #publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} # Define secret variable in repository settings as per action documentation package: 'D:\a\webapps-deploy\webapps-deploy\dotnetsample\SampleWebApplication\' + + From afdfd780e748ace8e62542210063e84cefb54b94 Mon Sep 17 00:00:00 2001 From: Benjamin Millhouse Date: Fri, 24 Mar 2023 08:57:51 -0400 Subject: [PATCH 4/7] Update action.yml Setting the `images` input as required is causing validation errors in my GitHub Actions extension. Per the description, it seems like the value should actually be set to `required: false` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f4c1d8eae..d3a8a2de6 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ inputs: default: '.' images: description: "Applies to Web App Containers only: Specify the fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For multi-container scenario multiple container image names can be provided (multi-line separated)" - required: true + required: false configuration-file: description: 'Applies to Web App Containers only: Path of the Docker-Compose file. Should be a fully qualified path or relative to the default working directory. Required for multi-container scenario' required: false From aa47a21e1067fd8f8d545ce8f8fe72bd3167bad3 Mon Sep 17 00:00:00 2001 From: Benjamin Millhouse Date: Fri, 24 Mar 2023 08:57:51 -0400 Subject: [PATCH 5/7] Update action.yml Setting the `images` input as required is causing validation errors in my GitHub Actions extension. Per the description, it seems like the value should actually be set to `required: false` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f4c1d8eae..d3a8a2de6 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ inputs: default: '.' images: description: "Applies to Web App Containers only: Specify the fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For multi-container scenario multiple container image names can be provided (multi-line separated)" - required: true + required: false configuration-file: description: 'Applies to Web App Containers only: Path of the Docker-Compose file. Should be a fully qualified path or relative to the default working directory. Required for multi-container scenario' required: false From 26f10884e0d47c1b5e8cbb6800b87aa48bc9039f Mon Sep 17 00:00:00 2001 From: sgollapudi <85578033+sgollapudi77@users.noreply.github.com> Date: Mon, 28 Aug 2023 19:44:43 +0530 Subject: [PATCH 6/7] Revert "First Commit" This reverts commit e3a5974b84ba8d7d32b92193681f23a9ccdd7fcd. --- .github/workflows/pr_check_webapp_dotnet_windows.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr_check_webapp_dotnet_windows.yml b/.github/workflows/pr_check_webapp_dotnet_windows.yml index 24c449313..7cb13fb78 100644 --- a/.github/workflows/pr_check_webapp_dotnet_windows.yml +++ b/.github/workflows/pr_check_webapp_dotnet_windows.yml @@ -1,4 +1,5 @@ name: pr_check_webapp_dotnet_windows + on: push: branches: From 4c5990767bdefa0736717926f4759a45d23059fd Mon Sep 17 00:00:00 2001 From: Benjamin Millhouse Date: Fri, 24 Mar 2023 08:57:51 -0400 Subject: [PATCH 7/7] Revert "asdasd" This reverts commit a82418cece4e16ff9be2c0185f46c3883e8d9af0. --- .github/workflows/pr_check_webapp_dotnet_windows.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pr_check_webapp_dotnet_windows.yml b/.github/workflows/pr_check_webapp_dotnet_windows.yml index 7cb13fb78..ec465a4bb 100644 --- a/.github/workflows/pr_check_webapp_dotnet_windows.yml +++ b/.github/workflows/pr_check_webapp_dotnet_windows.yml @@ -82,5 +82,3 @@ jobs: app-name: ${{ env.AZURE_WEBAPP_NAME }} # Replace with your app name #publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} # Define secret variable in repository settings as per action documentation package: 'D:\a\webapps-deploy\webapps-deploy\dotnetsample\SampleWebApplication\' - -