File tree Expand file tree Collapse file tree 1 file changed +4
-19
lines changed Expand file tree Collapse file tree 1 file changed +4
-19
lines changed Original file line number Diff line number Diff line change @@ -71,28 +71,13 @@ def has_sdk_changes()
71
71
}
72
72
end
73
73
74
- tester_team = [
75
- 'rlazo' ,
76
- 'vkryachko' ,
77
- 'yifanyang' ,
78
- 'VinayGuthal' ,
79
- 'davidmotson' ,
80
- 'daymxn' ,
81
- 'emilypgoogle'
82
- ]
83
-
84
- is_enabled = true if tester_team . include? github . pr_author
85
-
86
74
### Actions
87
75
88
76
# Warn if a changelog is left out on a non-trivial PR that has modified
89
77
# SDK source files.
90
78
#
91
- # TODO: remove the `is_enabled` after tests are complete
92
- if is_enabled && has_sdk_changes ( )
93
- if !has_changelog_changes && !declared_trivial
94
- warning = "Did you forget to add a changelog entry? (Add the 'no-changelog'" \
95
- " label to the PR to silence this warning.)"
96
- warn ( warning )
97
- end
79
+ if has_sdk_changes ( ) && !has_changelog_changes && !declared_trivial
80
+ warning = "Did you forget to add a changelog entry? (Add the 'no-changelog'" \
81
+ " label to the PR to silence this warning.)"
82
+ warn ( warning )
98
83
end
You can’t perform that action at this time.
0 commit comments