We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a87f1f + 7ac3b9b commit d17ef9cCopy full SHA for d17ef9c
src/handlers/assign.rs
@@ -169,10 +169,14 @@ pub(super) async fn handle_input(
169
// want any assignments or noise.
170
return Ok(());
171
}
172
- let welcome = if ctx
173
- .github
174
- .is_new_contributor(&event.repository, &event.issue.user.login)
175
- .await
+ // This is temporarily disabled until we come up with a better
+ // solution, or decide to remove this. The `is_new_contributor` query
+ // is too expensive and takes too long to process.
+ let welcome = if false
176
+ && ctx
177
+ .github
178
+ .is_new_contributor(&event.repository, &event.issue.user.login)
179
+ .await
180
{
181
let who_text = match &assignee {
182
Some(assignee) => WELCOME_WITH_REVIEWER.replace("{assignee}", assignee),
0 commit comments