豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Commit c9b2ff0

Browse files
committed
feat(ng-dev): support skipping CLA validation check forcibly
1 parent 379fc9e commit c9b2ff0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ng-dev/pr/common/validation/assert-signed-cla.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ import {createPullRequestValidation, PullRequestValidation} from './validation-c
1515

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

0 commit comments

Comments
 (0)