Skip to content
Closed
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
32 changes: 32 additions & 0 deletions eng/pipelines/new-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
####################################################################################################
# Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this
# file to you under the MIT license. See the LICENSE file in the project root for more information.
####################################################################################################

# This file exists to allow creation of pipelines in the Azure DevOps Public project. Currently, it
# isn't possible to create a pipeline against this repo unless the top-level YAML file is present in
# the main branch, which it won't be for pipelines that are still in development.
#
Comment thread
paulmedynski marked this conversation as resolved.
# When developing a new pipeline on a branch, you may clobber this file with your new pipeline, or
# change it to a symlink that points to your new pipeline. This will allow you to create the Azure
# DevOps pipeline and test your changes before merging to main. Before merging, revert this file to
# its original state.
#
# Once your new pipeline work is merged to main, you may edit the Azure DevOps pipeline to point to
# the correct YAML file.

# Disable all automatic triggers
pr: none
trigger: none

stages:
- stage: PlaceholderStage
displayName: Placeholder Stage
jobs:
- job: PlaceholderJob
displayName: Placeholder Job
pool:
vmImage: ubuntu-latest
steps:
- script: echo "Hello from the new pipeline!"
displayName: Print message
1 change: 1 addition & 0 deletions eng/pipelines/sqlclient-pr-package-ref-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ pr:
- NuGet.config
exclude:
- eng/pipelines/onebranch/*
- eng/pipelines/new-pipeline.yml

# Do not trigger commit or schedule runs for this pipeline.
trigger: none
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/sqlclient-pr-project-ref-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ pr:
- NuGet.config
exclude:
- eng/pipelines/onebranch/*
- eng/pipelines/new-pipeline.yml

# Do not trigger commit or schedule runs for this pipeline.
trigger: none
Expand Down
Loading