From 6ce8fc0e86178c685b3009540a92966fd83bec63 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Mon, 8 Apr 2019 09:52:34 -0700 Subject: [PATCH] Use Azure to update CODEOWNERS (#34556) * Use Azure to update CODEOWNERS That way Travis can be removed altogether. * Remove debugging output --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ecd56b7e2e..7d1b5267c0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,4 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml +# Learn more at: https://aka.ms/yaml jobs: - job: npmRunTest pool: @@ -16,7 +13,10 @@ jobs: inputs: verbose: false - - script: 'git checkout -- . && npm run test' + - script: | + git checkout -- . && npm run test + if [[ $BUILD_REASON == "Schedule" ]]; then npm run update-codeowners; fi + displayName: 'npm run test' trigger: