I was using the Azure/functions-action@v1 GitHub Action to deploy my function app. While reviewing the deployment logs, I noticed that this action automatically sets the WEBSITE_RUN_FROM_PACKAGE key, as seen in the GitHub Actions logs. Additionally, it also sets another environment variable: WEBSITE_ENABLE_SYNC_UPDATE_SITE.
Is there a way to prevent the action from automatically setting these variables and allow only user-specified environment variables to be configured?

