We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b034fc commit 0e2112aCopy full SHA for 0e2112a
2 files changed
lib/job.js
@@ -326,7 +326,9 @@ Job.prototype = {
326
phase: this.phase,
327
job: this.job,
328
branch: this.job.ref.branch,
329
- project: this.project
+ project: this.project,
330
+
331
+ runnerId: this.config.branchConfig.runner.id
332
};
333
334
return context;
test/test_run.js
@@ -53,7 +53,8 @@ describe('Integration', function () {
53
}], { // config
54
dataDir: '/tmp/',
55
cachier: cachier,
56
- io: new EventEmitter()
+ io: new EventEmitter(),
57
+ branchConfig : { runner : { id : 'dummy' } }
58
}, function (err) {
59
if (err) return done(err)
60
for (var name in called) {
0 commit comments