reviews: ignore official flag, check issue closed flag (#77434)
gitea/gitea-eo-custom/pipeline/head This commit looks good Details

This commit is contained in:
Frédéric Péters 2023-05-10 13:32:33 +02:00
parent 548879db2e
commit 41ebe2196b
1 changed files with 1 additions and 1 deletions

View File

@ -18,8 +18,8 @@ cursor.execute(
and review.type = 4
and review.issue_id = issue.id
and issue.repo_id = repository.id
and review.official = true
and issue.index = pull_request.index
and issue.is_closed = false
and pull_request.issue_id = issue.id
and pull_request.has_merged = false
order by "user".full_name, repository.name, review.created_unix