Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop Duplicate Builds #218

Merged
merged 2 commits into from
Jul 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Build

on:
push:
branches: master
pull_request:
release:
types:
Expand Down
4 changes: 0 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ image:
- Ubuntu
- Visual Studio 2019

pull_requests:
# Do not increment build number for pull requests
do_not_increment_build_number: true

environment:
# Disable the .NET logo in the console output.
DOTNET_NOLOGO: true
Expand Down
6 changes: 5 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
trigger:
branches:
include:
- '*'
- 'master'
tags:
include:
- '*'
pr:
branches:
include:
- '*'

variables:
# Disable the .NET logo in the console output.
Expand Down