mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-04 11:59:07 +08:00
59a133b9e2
* Update ci.yml Add path exclusions for markdown files. * Update wildcard syntax * Test edit SUPPORT.md * Update ci.yml * Test Update SUPPORT.md * Update SUPPORT.md Test update SUPPORT again. * Update ci.yml * Explicit define of markdown files at root * Test update SUPPORT.md * Update ci.yml * Another Test Update SUPPORT.md * Script to check existence of markdown changes in commit * Added precheck job to determine whether a build needs to occur * Added pool logic from ci-build to precheck * Fixed GitHub API url for commits * Test change to SUPPORT.md to see if logic works. * Converted filename list to array to make notmatching criteria work * Change to SUPPORT.md to test * Updated condition to check success of previous precheck job * Added task name to verifyBuildRequest and updated job run condition * Another update to SUPPORT.md to test * Updated spell-check * Removed checkout step and made Powershell task inline * Fixed indentation * Test change to SUPPORT.md * Fixing script * Another test change to SUPPORT.md * [CI] Update Build Precheck step to use latest agent config * Update SUPPORT.md * Update SUPPORT.md * [CI] Update Build Precheck to exclude .txt and read changes from pull request * [CI] Remove unneeded verifyBuildRequest script * [CI] Updated variable names to reflect pull request retrieval in precheck
36 lines
719 B
YAML
36 lines
719 B
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/main/service-schema.json
|
|
trigger:
|
|
batch: true
|
|
branches:
|
|
include:
|
|
- main
|
|
- stable
|
|
paths:
|
|
exclude:
|
|
- doc/*
|
|
- temp/*
|
|
- tools/*
|
|
- '**.md'
|
|
|
|
pr:
|
|
branches:
|
|
include:
|
|
- main
|
|
- stable
|
|
paths:
|
|
exclude:
|
|
- '**.md'
|
|
- doc
|
|
|
|
# 0.0.yyMM.dd##
|
|
# 0.0.1904.0900
|
|
name: 0.0.$(Date:yyMM).$(Date:dd)$(Rev:rr)
|
|
|
|
jobs:
|
|
- template: ./templates/build-powertoys-precheck.yml
|
|
- template: ./templates/build-powertoys-ci.yml
|
|
parameters:
|
|
platform: x64
|
|
- template: ./templates/build-powertoys-ci.yml
|
|
parameters:
|
|
platform: arm64 |