Skip to content

Commit 2788214

Browse files
micalhulkoba
authored andcommitted
feat: add BuddyWorks CI
1 parent 4b693e9 commit 2788214

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

ci-services/buddyworks.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
'use strict'
2+
3+
const env = process.env
4+
5+
module.exports = {
6+
// The GitHub repo slug
7+
repoSlug: env.BUDDY_REPO_SLUG,
8+
// The name of the current branch
9+
branchName: env.BUDDY_EXECUTION_BRANCH,
10+
// Is this a regular build
11+
correctBuild: /^greenkeeper\/.+/.test(env.BUDDY_EXECUTION_BRANCH),
12+
// Should the lockfile be uploaded from this build
13+
uploadBuild: true
14+
}

ci-services/tests.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ module.exports = {
1414
bitrise: () => env.BITRISE_IO === 'true',
1515
semaphoreci: () => env.SEMAPHORE === 'true',
1616
teamcity: () => env.TEAMCITY_VERSION !== undefined,
17-
appveyor: () => env.APPVEYOR === 'True' || env.APPVEYOR === 'true'
17+
appveyor: () => env.APPVEYOR === 'True' || env.APPVEYOR === 'true',
18+
buddyworks: () => env.BUDDY_EXECUTION_ID !== undefined
1819
}

0 commit comments

Comments
 (0)