Azure CLI

# show config 
az webapp config show --resource-group MyGroup --name WebApp --slot staging

# tail logs
az webapp log tail -g MyGroup -n WebApp --slot staging

# deploy from branch
az pipelines run --organization "https://dev.azure.com/ORG" --project "PROJECT" --name "PIPELINE" --branch "fix/CVE-2025-55182" --parameters DEPLOY_STAGING='true'