├── .azuredevops └── dependabot.yml ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug-report-feature-request.md ├── issue-label-bot.yaml └── workflows │ ├── auto-triage-issues │ ├── defaultLabels.yml │ ├── run-e2e-tests-dotnet8-lcon.yaml │ ├── run-e2e-tests-dotnet8-wcon.yaml │ ├── run-e2e-tests-java8-lcon.yaml │ ├── run-e2e-tests-java8-wcon.yaml │ ├── run-e2e-tests-node20-lcon.yaml │ ├── run-e2e-tests-node20-wcon.yaml │ ├── run-e2e-tests-powershell6-wcon.yaml │ ├── run-e2e-tests-python310-flexcon.yaml │ ├── run-e2e-tests-python310-lcon-msi.yaml │ └── run-unit-tests.yaml ├── .gitignore ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── action.yml ├── eng └── ci │ ├── code-mirror.yml │ ├── official-build.yml │ ├── public-build.yml │ └── templates │ └── jobs │ └── build.yml ├── functions-action.sln ├── package.json ├── release.ps1 ├── src ├── appservice-rest │ ├── Arm │ │ └── azure-app-service.ts │ ├── Kudu │ │ ├── KuduServiceClient.ts │ │ └── azure-app-kudu-service.ts │ └── Utilities │ │ ├── AnnotationUtility.ts │ │ ├── AzureAppServiceUtility.ts │ │ └── KuduServiceUtility.ts ├── constants │ ├── authentication_type.ts │ ├── configuration.ts │ ├── enable_oryx_build.ts │ ├── function_runtime.ts │ ├── function_sku.ts │ ├── log_level.ts │ ├── publish_method.ts │ ├── runtime_stack.ts │ ├── scm_build.ts │ └── state.ts ├── exceptions.ts ├── handlers │ ├── contentPreparer.ts │ ├── contentPublisher.ts │ ├── initializer.ts │ ├── parameterValidator.ts │ ├── publishValidator.ts │ └── resourceValidator.ts ├── interfaces │ ├── IActionContext.ts │ ├── IActionParameters.ts │ ├── IAppSettings.ts │ ├── IOrchestratable.ts │ ├── IPrinter.ts │ └── IScmCredentials.ts ├── main.ts ├── managers │ ├── builder.ts │ └── orchestrator.ts ├── publishers │ ├── index.ts │ ├── oneDeployFlex.ts │ ├── websiteRunFromPackageDeploy.ts │ └── zipDeploy.ts └── utils │ ├── funcignore.ts │ ├── index.ts │ ├── logger.ts │ ├── parser.ts │ └── sleeper.ts ├── tests ├── e2e │ ├── dotnet8 │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── extensions.json │ │ ├── HttpTrigger.cs │ │ ├── Program.cs │ │ ├── dotnet8.csproj │ │ └── host.json │ ├── java8 │ │ ├── .gitignore │ │ ├── host.json │ │ ├── pom.xml │ │ ├── sha.txt │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── wincon │ │ │ │ └── Function.java │ │ │ └── test │ │ │ └── java │ │ │ └── wincon │ │ │ ├── FunctionTest.java │ │ │ └── HttpResponseMessageMock.java │ ├── node20 │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── extensions.json │ │ ├── HttpTrigger │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── host.json │ │ ├── package.json │ │ └── sha.txt │ ├── powershell6 │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── HttpTrigger │ │ │ ├── function.json │ │ │ └── run.ps1 │ │ ├── host.json │ │ ├── profile.ps1 │ │ ├── requirements.psd1 │ │ └── sha.txt │ └── python310 │ │ ├── HttpTrigger │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ ├── function.json │ │ └── sample.dat │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── requirements.txt │ │ └── sha.txt ├── handlers │ ├── contentPreparer.spec.ts │ ├── initializer.spec.ts │ ├── parameterValidator.spec.ts │ └── publishValidator.spec.ts ├── managers │ ├── builder.spec.ts │ └── orchestrator.spec.ts ├── samples │ ├── BrokenJavaAppFolder │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── groupId │ │ │ │ └── Function.java │ │ │ └── test │ │ │ └── java │ │ │ └── groupId │ │ │ ├── FunctionTest.java │ │ │ └── HttpResponseMessageMock.java │ ├── JavaApp.jar │ ├── JavaAppFolder │ │ ├── host.json │ │ ├── local.settings.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── groupId │ │ │ │ └── Function.java │ │ │ └── test │ │ │ └── java │ │ │ └── groupId │ │ │ ├── FunctionTest.java │ │ │ └── HttpResponseMessageMock.java │ ├── NetCoreApp.zip │ ├── NetCoreAppFolder │ │ ├── Dotnet3.csproj │ │ ├── HttpTrigger.cs │ │ └── host.json │ ├── PythonAppFolder │ │ ├── HttpTrigger │ │ │ ├── __init__.py │ │ │ └── function.json │ │ ├── host.json │ │ ├── local.settings.json │ │ └── requirements.txt │ └── PythonAppFuncignoreFolder │ │ ├── .funcignore │ │ ├── HttpTrigger │ │ ├── __init__.py │ │ └── function.json │ │ ├── host.json │ │ ├── local.settings.json │ │ └── requirements.txt ├── temp │ └── placeholder.txt └── utils │ ├── funcignore.spec.ts │ ├── function_runtime.spec.ts │ ├── logger.spec.ts │ ├── parser.spec.ts │ └── sleeper.spec.ts ├── tsconfig.base.json ├── tsconfig.dev.json ├── tsconfig.json └── tsconfig.prod.json /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/ISSUE_TEMPLATE/bug-report-feature-request.md -------------------------------------------------------------------------------- /.github/issue-label-bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/issue-label-bot.yaml -------------------------------------------------------------------------------- /.github/workflows/auto-triage-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/auto-triage-issues -------------------------------------------------------------------------------- /.github/workflows/defaultLabels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/defaultLabels.yml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-dotnet8-lcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-dotnet8-lcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-dotnet8-wcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-dotnet8-wcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-java8-lcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-java8-lcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-java8-wcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-java8-wcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-node20-lcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-node20-lcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-node20-wcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-node20-wcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-powershell6-wcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-powershell6-wcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-python310-flexcon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-python310-flexcon.yaml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests-python310-lcon-msi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-e2e-tests-python310-lcon-msi.yaml -------------------------------------------------------------------------------- /.github/workflows/run-unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.github/workflows/run-unit-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/action.yml -------------------------------------------------------------------------------- /eng/ci/code-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/eng/ci/code-mirror.yml -------------------------------------------------------------------------------- /eng/ci/official-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/eng/ci/official-build.yml -------------------------------------------------------------------------------- /eng/ci/public-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/eng/ci/public-build.yml -------------------------------------------------------------------------------- /eng/ci/templates/jobs/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/eng/ci/templates/jobs/build.yml -------------------------------------------------------------------------------- /functions-action.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/functions-action.sln -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/package.json -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/release.ps1 -------------------------------------------------------------------------------- /src/appservice-rest/Arm/azure-app-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/appservice-rest/Arm/azure-app-service.ts -------------------------------------------------------------------------------- /src/appservice-rest/Kudu/KuduServiceClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/appservice-rest/Kudu/KuduServiceClient.ts -------------------------------------------------------------------------------- /src/appservice-rest/Kudu/azure-app-kudu-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/appservice-rest/Kudu/azure-app-kudu-service.ts -------------------------------------------------------------------------------- /src/appservice-rest/Utilities/AnnotationUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/appservice-rest/Utilities/AnnotationUtility.ts -------------------------------------------------------------------------------- /src/appservice-rest/Utilities/AzureAppServiceUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/appservice-rest/Utilities/AzureAppServiceUtility.ts -------------------------------------------------------------------------------- /src/appservice-rest/Utilities/KuduServiceUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/appservice-rest/Utilities/KuduServiceUtility.ts -------------------------------------------------------------------------------- /src/constants/authentication_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/authentication_type.ts -------------------------------------------------------------------------------- /src/constants/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/configuration.ts -------------------------------------------------------------------------------- /src/constants/enable_oryx_build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/enable_oryx_build.ts -------------------------------------------------------------------------------- /src/constants/function_runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/function_runtime.ts -------------------------------------------------------------------------------- /src/constants/function_sku.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/function_sku.ts -------------------------------------------------------------------------------- /src/constants/log_level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/log_level.ts -------------------------------------------------------------------------------- /src/constants/publish_method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/publish_method.ts -------------------------------------------------------------------------------- /src/constants/runtime_stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/runtime_stack.ts -------------------------------------------------------------------------------- /src/constants/scm_build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/scm_build.ts -------------------------------------------------------------------------------- /src/constants/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/constants/state.ts -------------------------------------------------------------------------------- /src/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/exceptions.ts -------------------------------------------------------------------------------- /src/handlers/contentPreparer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/handlers/contentPreparer.ts -------------------------------------------------------------------------------- /src/handlers/contentPublisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/handlers/contentPublisher.ts -------------------------------------------------------------------------------- /src/handlers/initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/handlers/initializer.ts -------------------------------------------------------------------------------- /src/handlers/parameterValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/handlers/parameterValidator.ts -------------------------------------------------------------------------------- /src/handlers/publishValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/handlers/publishValidator.ts -------------------------------------------------------------------------------- /src/handlers/resourceValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/handlers/resourceValidator.ts -------------------------------------------------------------------------------- /src/interfaces/IActionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/interfaces/IActionContext.ts -------------------------------------------------------------------------------- /src/interfaces/IActionParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/interfaces/IActionParameters.ts -------------------------------------------------------------------------------- /src/interfaces/IAppSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/interfaces/IAppSettings.ts -------------------------------------------------------------------------------- /src/interfaces/IOrchestratable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/interfaces/IOrchestratable.ts -------------------------------------------------------------------------------- /src/interfaces/IPrinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/interfaces/IPrinter.ts -------------------------------------------------------------------------------- /src/interfaces/IScmCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/interfaces/IScmCredentials.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/managers/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/managers/builder.ts -------------------------------------------------------------------------------- /src/managers/orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/managers/orchestrator.ts -------------------------------------------------------------------------------- /src/publishers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/publishers/index.ts -------------------------------------------------------------------------------- /src/publishers/oneDeployFlex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/publishers/oneDeployFlex.ts -------------------------------------------------------------------------------- /src/publishers/websiteRunFromPackageDeploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/publishers/websiteRunFromPackageDeploy.ts -------------------------------------------------------------------------------- /src/publishers/zipDeploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/publishers/zipDeploy.ts -------------------------------------------------------------------------------- /src/utils/funcignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/utils/funcignore.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/utils/parser.ts -------------------------------------------------------------------------------- /src/utils/sleeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/src/utils/sleeper.ts -------------------------------------------------------------------------------- /tests/e2e/dotnet8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/dotnet8/.gitignore -------------------------------------------------------------------------------- /tests/e2e/dotnet8/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/dotnet8/.vscode/extensions.json -------------------------------------------------------------------------------- /tests/e2e/dotnet8/HttpTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/dotnet8/HttpTrigger.cs -------------------------------------------------------------------------------- /tests/e2e/dotnet8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/dotnet8/Program.cs -------------------------------------------------------------------------------- /tests/e2e/dotnet8/dotnet8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/dotnet8/dotnet8.csproj -------------------------------------------------------------------------------- /tests/e2e/dotnet8/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/dotnet8/host.json -------------------------------------------------------------------------------- /tests/e2e/java8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/java8/.gitignore -------------------------------------------------------------------------------- /tests/e2e/java8/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /tests/e2e/java8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/java8/pom.xml -------------------------------------------------------------------------------- /tests/e2e/java8/sha.txt: -------------------------------------------------------------------------------- 1 | sha-txt-java8-placeholder -------------------------------------------------------------------------------- /tests/e2e/java8/src/main/java/wincon/Function.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/java8/src/main/java/wincon/Function.java -------------------------------------------------------------------------------- /tests/e2e/java8/src/test/java/wincon/FunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/java8/src/test/java/wincon/FunctionTest.java -------------------------------------------------------------------------------- /tests/e2e/java8/src/test/java/wincon/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/java8/src/test/java/wincon/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /tests/e2e/node20/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/node20/.gitignore -------------------------------------------------------------------------------- /tests/e2e/node20/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/node20/.vscode/extensions.json -------------------------------------------------------------------------------- /tests/e2e/node20/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/node20/HttpTrigger/function.json -------------------------------------------------------------------------------- /tests/e2e/node20/HttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/node20/HttpTrigger/index.js -------------------------------------------------------------------------------- /tests/e2e/node20/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/node20/host.json -------------------------------------------------------------------------------- /tests/e2e/node20/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/node20/package.json -------------------------------------------------------------------------------- /tests/e2e/node20/sha.txt: -------------------------------------------------------------------------------- 1 | sha-txt-node20-placeholder -------------------------------------------------------------------------------- /tests/e2e/powershell6/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /tests/e2e/powershell6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/powershell6/.gitignore -------------------------------------------------------------------------------- /tests/e2e/powershell6/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/powershell6/HttpTrigger/function.json -------------------------------------------------------------------------------- /tests/e2e/powershell6/HttpTrigger/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/powershell6/HttpTrigger/run.ps1 -------------------------------------------------------------------------------- /tests/e2e/powershell6/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/powershell6/host.json -------------------------------------------------------------------------------- /tests/e2e/powershell6/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/powershell6/profile.ps1 -------------------------------------------------------------------------------- /tests/e2e/powershell6/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/powershell6/requirements.psd1 -------------------------------------------------------------------------------- /tests/e2e/powershell6/sha.txt: -------------------------------------------------------------------------------- 1 | sha-txt-powershell6-placeholder -------------------------------------------------------------------------------- /tests/e2e/python310/HttpTrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/python310/HttpTrigger/__init__.py -------------------------------------------------------------------------------- /tests/e2e/python310/HttpTrigger/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/python310/HttpTrigger/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /tests/e2e/python310/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/python310/HttpTrigger/function.json -------------------------------------------------------------------------------- /tests/e2e/python310/HttpTrigger/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /tests/e2e/python310/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/python310/host.json -------------------------------------------------------------------------------- /tests/e2e/python310/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/python310/local.settings.json -------------------------------------------------------------------------------- /tests/e2e/python310/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/e2e/python310/requirements.txt -------------------------------------------------------------------------------- /tests/e2e/python310/sha.txt: -------------------------------------------------------------------------------- 1 | sha-txt-python310-placeholder -------------------------------------------------------------------------------- /tests/handlers/contentPreparer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/handlers/contentPreparer.spec.ts -------------------------------------------------------------------------------- /tests/handlers/initializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/handlers/initializer.spec.ts -------------------------------------------------------------------------------- /tests/handlers/parameterValidator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/handlers/parameterValidator.spec.ts -------------------------------------------------------------------------------- /tests/handlers/publishValidator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/handlers/publishValidator.spec.ts -------------------------------------------------------------------------------- /tests/managers/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/managers/builder.spec.ts -------------------------------------------------------------------------------- /tests/managers/orchestrator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/managers/orchestrator.spec.ts -------------------------------------------------------------------------------- /tests/samples/BrokenJavaAppFolder/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/BrokenJavaAppFolder/host.json -------------------------------------------------------------------------------- /tests/samples/BrokenJavaAppFolder/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/BrokenJavaAppFolder/local.settings.json -------------------------------------------------------------------------------- /tests/samples/BrokenJavaAppFolder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/BrokenJavaAppFolder/pom.xml -------------------------------------------------------------------------------- /tests/samples/BrokenJavaAppFolder/src/main/java/groupId/Function.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/BrokenJavaAppFolder/src/main/java/groupId/Function.java -------------------------------------------------------------------------------- /tests/samples/BrokenJavaAppFolder/src/test/java/groupId/FunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/BrokenJavaAppFolder/src/test/java/groupId/FunctionTest.java -------------------------------------------------------------------------------- /tests/samples/BrokenJavaAppFolder/src/test/java/groupId/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/BrokenJavaAppFolder/src/test/java/groupId/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /tests/samples/JavaApp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaApp.jar -------------------------------------------------------------------------------- /tests/samples/JavaAppFolder/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaAppFolder/host.json -------------------------------------------------------------------------------- /tests/samples/JavaAppFolder/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaAppFolder/local.settings.json -------------------------------------------------------------------------------- /tests/samples/JavaAppFolder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaAppFolder/pom.xml -------------------------------------------------------------------------------- /tests/samples/JavaAppFolder/src/main/java/groupId/Function.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaAppFolder/src/main/java/groupId/Function.java -------------------------------------------------------------------------------- /tests/samples/JavaAppFolder/src/test/java/groupId/FunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaAppFolder/src/test/java/groupId/FunctionTest.java -------------------------------------------------------------------------------- /tests/samples/JavaAppFolder/src/test/java/groupId/HttpResponseMessageMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/JavaAppFolder/src/test/java/groupId/HttpResponseMessageMock.java -------------------------------------------------------------------------------- /tests/samples/NetCoreApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/NetCoreApp.zip -------------------------------------------------------------------------------- /tests/samples/NetCoreAppFolder/Dotnet3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/NetCoreAppFolder/Dotnet3.csproj -------------------------------------------------------------------------------- /tests/samples/NetCoreAppFolder/HttpTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/NetCoreAppFolder/HttpTrigger.cs -------------------------------------------------------------------------------- /tests/samples/NetCoreAppFolder/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/NetCoreAppFolder/host.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFolder/HttpTrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFolder/HttpTrigger/__init__.py -------------------------------------------------------------------------------- /tests/samples/PythonAppFolder/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFolder/HttpTrigger/function.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFolder/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFolder/host.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFolder/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFolder/local.settings.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFolder/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-functions 2 | -------------------------------------------------------------------------------- /tests/samples/PythonAppFuncignoreFolder/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFuncignoreFolder/.funcignore -------------------------------------------------------------------------------- /tests/samples/PythonAppFuncignoreFolder/HttpTrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFuncignoreFolder/HttpTrigger/__init__.py -------------------------------------------------------------------------------- /tests/samples/PythonAppFuncignoreFolder/HttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFuncignoreFolder/HttpTrigger/function.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFuncignoreFolder/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFuncignoreFolder/host.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFuncignoreFolder/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/samples/PythonAppFuncignoreFolder/local.settings.json -------------------------------------------------------------------------------- /tests/samples/PythonAppFuncignoreFolder/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-functions 2 | -------------------------------------------------------------------------------- /tests/temp/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/temp/placeholder.txt -------------------------------------------------------------------------------- /tests/utils/funcignore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/utils/funcignore.spec.ts -------------------------------------------------------------------------------- /tests/utils/function_runtime.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/utils/function_runtime.spec.ts -------------------------------------------------------------------------------- /tests/utils/logger.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/utils/logger.spec.ts -------------------------------------------------------------------------------- /tests/utils/parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/utils/parser.spec.ts -------------------------------------------------------------------------------- /tests/utils/sleeper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tests/utils/sleeper.spec.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/functions-action/HEAD/tsconfig.prod.json --------------------------------------------------------------------------------