27 lines
844 B
YAML
27 lines
844 B
YAML
|
|
# Pipeline template sources for YAML autocomplete
|
||
|
|
# Consumed by scripts/sync_pipeline_templates.py
|
||
|
|
|
||
|
|
sources:
|
||
|
|
|
||
|
|
# AzDO template repos — referenced via @alias in pipeline YAML
|
||
|
|
azdo:
|
||
|
|
- alias: pipeline-templates
|
||
|
|
local_path: ~/IdeaProjects/Bitbucket/Drift/pipeline-templates
|
||
|
|
# Relative subpaths to scan (empty = entire repo)
|
||
|
|
scan_dirs:
|
||
|
|
- tasks
|
||
|
|
- stages
|
||
|
|
- jobs
|
||
|
|
- variables
|
||
|
|
# File extensions to scan
|
||
|
|
extensions: [.yaml, .yml]
|
||
|
|
|
||
|
|
# GitHub Actions reusable workflows — referenced via uses: org/repo/.github/workflows/file@ref
|
||
|
|
gha:
|
||
|
|
- org: LRU-Digital
|
||
|
|
local_base: ~/IdeaProjects/GitHub/LRU-Digital
|
||
|
|
# Only scan repos that have reusable workflows (workflow_call trigger)
|
||
|
|
# Leave empty to scan all repos under local_base
|
||
|
|
repos: []
|
||
|
|
default_ref: main
|