-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
31 lines (28 loc) · 922 Bytes
/
Jenkinsfile
File metadata and controls
31 lines (28 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pipeline {
agent any
options {
office365ConnectorWebhooks([[
name: 'Office 365',
url: "https://prod-08.canadacentral.logic.azure.com:443/workflows/757bda822f2240f789945eafdf43f7f0/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=-IsBuvtNvdb_OGxx0Pg8XjM77vUTWrOaGujbeYt0Pi8",
startNotification: true,
notifySuccess: true,
notifyAborted: true,
notifyNotBuilt: true,
notifyUnstable: true,
notifyFailure: true,
notifyBackToNormal: true,
notifyRepeatedFailure: true,
timeout: 30000,
adaptiveCards: true,
mentionCommitters: true,
mentionDevelopers: true
]])
}
stages {
stage('Example Build') {
steps {
sh ("-ls")
}
}
}
}