Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
Rework trigger logic in azure-pipelines (#425)
Browse files Browse the repository at this point in the history
* Rework trigger logic in azure-pipelines

The azure pipelines triggers were out of date and we were not running
jobs on the stable branches post-merge. This commit corrects the
oversight and also adds explicit triggers everywhere we want to run a
job (there have been issues with the implicit default PR triggers in the
past).

(cherry picked from commit c02e83e)
  • Loading branch information
mtreinish committed Jun 18, 2020
1 parent 05dbf1a commit e9f528b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@
# https://docs.microsoft.com/azure/devops/pipelines/languages/python

trigger:
- master
- stable
branches:
include:
- master
- stable/*
pr:
autoCancel: true
branches:
include:
- '*'

jobs:
- job: 'Docs'
Expand Down

0 comments on commit e9f528b

Please sign in to comment.