Skip to content

Commit

Permalink
Explicitly set PR trigger for all branches on Azure (#244)
Browse files Browse the repository at this point in the history
For some reason, Azure Pipelines CI wasn't starting up PRs, only on
master and tags. Explicitly setting a trigger for PRs against any branch
seems to work.
  • Loading branch information
leouieda authored Mar 16, 2020
1 parent 62cc8da commit ac0c162
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ trigger:
- master
- refs/tags/*

# Make sure triggers are set for PRs to any branch.
pr:
branches:
include:
- '*'


jobs:

Expand Down

0 comments on commit ac0c162

Please sign in to comment.