Skip to content

Commit

Permalink
feat(ng-dev): support skipping CLA validation check forcibly
Browse files Browse the repository at this point in the history
  • Loading branch information
devversion committed Oct 6, 2022
1 parent 379fc9e commit c9b2ff0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ng-dev/pr/common/validation/assert-signed-cla.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ import {createPullRequestValidation, PullRequestValidation} from './validation-c

/** Assert the pull request has a signed CLA. */
export const signedClaValidation = createPullRequestValidation(
{name: 'assertSignedCla', canBeForceIgnored: false},
// CLA check can be force-ignored but the caretaker needs to make sure
// the target pull requests has a signed CLA or is authored by another Googler.
{name: 'assertSignedCla', canBeForceIgnored: true},
() => Validation,
);

Expand Down

0 comments on commit c9b2ff0

Please sign in to comment.