https://github.com/angular/angular
Revision 7005da9c0fea03e205c2f22de91cd2b9b5cd0121 authored by Andrew Kushnir on 03 May 2022, 18:02:21 UTC, committed by Dylan Hunn on 03 May 2022, 22:48:26 UTC
This commit updates the PullApprove config to decrease the number of required reviews from `public-api` and `size-tracking` group members.

PR Close #45855
1 parent 410d81f
Raw File
Tip revision: 7005da9c0fea03e205c2f22de91cd2b9b5cd0121 authored by Andrew Kushnir on 03 May 2022, 18:02:21 UTC
ci: decrease the number of required `public-api` and `size-tracking` reviews (#45855)
Tip revision: 7005da9
gulpfile.js
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */

'use strict';

const gulp = require('gulp');

// See `tools/gulp-tasks/README.md` for information about task loading.
function loadTask(fileName, taskName) {
  const taskModule = require('./tools/gulp-tasks/' + fileName);
  const task = taskName ? taskModule[taskName] : taskModule;
  return task(gulp);
}


gulp.task('source-map-test', loadTask('source-map-test'));
gulp.task('changelog:zonejs', loadTask('changelog-zonejs'));
back to top