Skip to content

Instantly share code, notes, and snippets.

@PennyQ
Last active September 17, 2021 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PennyQ/91f9cd5652210729e69212542f9477cb to your computer and use it in GitHub Desktop.
Save PennyQ/91f9cd5652210729e69212542f9477cb to your computer and use it in GitHub Desktop.
# Repo: MySpace/UserRepo
# File: azure-pipeline3.yml
name: cicd_ci
variables:
- name: PylintThreshold
value: 8.0
- name: LintFolder
value: "folder_dir"
trigger:
branches:
include:
- master
resources:
repositories:
- repository: ci_template
type: git
name: MySpace/Repo1
ref: 'refs/heads/master'
stages:
- stage: CI_Checks
jobs:
- template: ci_template.yml@ci_template
parameters:
pylint_threshold: $(PylintThreshold)
lint_folder: $(LintFolder)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment