We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe9483 commit 157cff3Copy full SHA for 157cff3
.azure/pipelines/report-green.yml
@@ -0,0 +1,34 @@
1
+# Only run this on PRs
2
+trigger: none
3
+# Run for all branches, only on paths that no-op other jobs
4
+pr:
5
+ autoCancel: true
6
+ branches:
7
+ include:
8
+ - '*'
9
+ paths:
10
11
+ - .devcontainer/*
12
+ - .github/*
13
+ - .vscode/*
14
+ - docs/*
15
+ - '**/*.md'
16
+ - LICENSE.TXT
17
+ - THIRD-PARTY-NOTICES.TXT
18
+
19
+# ABG - Always Be Green
20
+jobs:
21
+- template: /eng/common/templates/jobs/jobs.yml
22
+ parameters:
23
+ enableTelemetry: true
24
+ helixRepo: dotnet/aspnetcore
25
+ jobs:
26
+ - job: Report_Green
27
+ enableSBOM: false
28
+ pool:
29
+ name: $(DncEngPublicBuildPool)
30
+ demands: ImageOverride -equals 1es-windows-2022
31
+ steps:
32
+ - powershell: |
33
+ exit 0
34
+ displayName: Exit 0
0 commit comments