diff options
| author | saurabh <saurabhrai1717@gmail.com> | 2025-12-05 20:41:00 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-05 10:11:00 -0500 |
| commit | 1dfd5aa2b5beb2d5354527eae4f2589b828ac06c (patch) | |
| tree | d28976b986c49e1da75f56ffb88ac70d6e1e3dcf /.github | |
| parent | 0ac548635eee801d5de49bec482b7b8e1e97ef59 (diff) | |
Refs #36620 -- Removed PR number null check from coverage_comment workflow.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/coverage_comment.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/coverage_comment.yml b/.github/workflows/coverage_comment.yml index d63e6f4a75..42a5b0251f 100644 --- a/.github/workflows/coverage_comment.yml +++ b/.github/workflows/coverage_comment.yml @@ -15,8 +15,7 @@ jobs: if: > github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' && - github.repository == 'django/django' && - github.event.workflow_run.pull_requests[0] != null + github.repository == 'django/django' name: Post Coverage Comment runs-on: ubuntu-latest timeout-minutes: 60 |
