Skip to content

Commit

Permalink
Make a trivial change to cause the publish trigger to trip. (#446)
Browse files Browse the repository at this point in the history
* Make a trivial change to cause the publish trigger to trip.

* Fix pipeline trigger paths
  • Loading branch information
gfs committed Apr 29, 2022
1 parent 8cb19ef commit 052b0e8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions AppInspector.Common/OpException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

using System.Diagnostics.CodeAnalysis;

namespace Microsoft.ApplicationInspector.Common
{
using System;
Expand All @@ -9,6 +11,7 @@ namespace Microsoft.ApplicationInspector.Common
/// Used to distinguish exceptions which are expected to have been safely written to log and console for CLI use
/// to avoid duplication of error messages to better support both CLI and NuGet entry / exit points
/// </summary>
[ExcludeFromCodeCoverage]
public class OpException : Exception
{
public OpException(string? msg) : base(msg)
Expand Down
14 changes: 9 additions & 5 deletions Pipelines/core-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,24 @@ trigger:
- main
paths:
include:
- AppInspector/*
- AppInspector.CLI/*
- RulesEngine/*
- AppInspector.Commands/*
- AppInspector.Common/*
- AppInspector.Logging/*
- AppInspector.RulesEngine/*
pr:
branches:
include:
- main
- development
paths:
include:
- Pipelines
- AppInspector/*
- AppInspector.CLI/*
- RulesEngine/*
- AppInspector.Commands/*
- AppInspector.Common/*
- AppInspector.Logging/*
- AppInspector.RulesEngine/*
- AppInspector.Tests/*

stages:
- stage: Test
Expand Down

0 comments on commit 052b0e8

Please sign in to comment.