diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 6337e60e0c7ff..b520069a389be 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -14,7 +14,7 @@ on: jobs: # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot. copilot-setup-steps: - runs-on: ubuntu-latest + runs-on: vscode-large-runners # Set the permissions to the lowest permissions possible needed for your steps. # Copilot will be given its own token for its operations. diff --git a/build/azure-pipelines/product-build.yml b/build/azure-pipelines/product-build.yml index 912bd66f90c63..93a2a335a855e 100644 --- a/build/azure-pipelines/product-build.yml +++ b/build/azure-pipelines/product-build.yml @@ -674,6 +674,8 @@ extends: displayName: Publish Build steps: - template: build/azure-pipelines/product-publish.yml@self + parameters: + VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} - ${{ if and(parameters.VSCODE_RELEASE, eq(variables['VSCODE_PRIVATE_BUILD'], false)) }}: - stage: ApproveRelease diff --git a/build/azure-pipelines/product-publish.yml b/build/azure-pipelines/product-publish.yml index c905b5015e4d7..124f6d354b0d1 100644 --- a/build/azure-pipelines/product-publish.yml +++ b/build/azure-pipelines/product-publish.yml @@ -1,3 +1,7 @@ +parameters: + - name: VSCODE_QUALITY + type: string + steps: - template: ./common/checkout.yml@self