PowerShell/.vsts-ci/misc-analysis.yml
Travis Plunk d372832325
Remove spelling CI in favor of GitHub Action (#19973)
* Remove spelling CI

* Delete mdSpell.yml

* Delete markdown.yml

* Update CONTRIBUTING.md

* repo issues

* markdown term fixes

* command-line term

* fix syntax issues

* fix codebase term

* Disable VALIDATE_EDITORCONFIG
2023-07-17 18:03:59 +00:00

49 lines
860 B
YAML

name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)
trigger:
# Batch merge builds together while a merge build is running
batch: true
branches:
include:
- master
- feature*
pr:
branches:
include:
- master
- feature*
resources:
repositories:
- repository: ComplianceRepo
type: github
endpoint: PowerShell
name: PowerShell/compliance
ref: master
variables:
- name: repoFolder
value: PowerShell
stages:
- stage: Compliance
jobs:
- job: CI_Compliance
displayName: CI Compliance
pool:
vmImage: windows-latest
variables:
- name: repoPath
value: $(Agent.BuildDirectory)\$(repoFolder)
steps:
- checkout: self
clean: true
path: $(repoFolder)
- checkout: ComplianceRepo
- template: ci-compliance.yml@ComplianceRepo