Skip to content

Commit 617ac3f

Browse files
committed
Stop duplicate builds from Branch and PR triggers
1 parent fcadc8d commit 617ac3f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Build
22

33
on:
44
push:
5+
branches: master
56
pull_request:
67
release:
78
types:

azure-pipelines.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
trigger:
44
branches:
55
include:
6-
- '*'
6+
- 'master'
77
tags:
88
include:
99
- '*'
10+
pr:
11+
branches:
12+
include:
13+
- '*'
1014

1115
variables:
1216
# Disable the .NET logo in the console output.

0 commit comments

Comments
 (0)