File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change
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 : / ^ g r e e n k e e p e r \/ .+ / . test ( env . BUDDY_EXECUTION_BRANCH ) ,
12
+ // Should the lockfile be uploaded from this build
13
+ uploadBuild : true
14
+ }
Original file line number Diff line number Diff line change @@ -14,5 +14,6 @@ module.exports = {
14
14
bitrise : ( ) => env . BITRISE_IO === 'true' ,
15
15
semaphoreci : ( ) => env . SEMAPHORE === 'true' ,
16
16
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
18
19
}
You can’t perform that action at this time.
0 commit comments