Skip to content

Commit f3802c3

Browse files
committed
include fixes from #689
1 parent e5dc500 commit f3802c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/create_combined_ci_report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ def get_regression_fails(client: Client, job_url: str):
358358
job_name,
359359
report_url as results_link
360360
FROM `gh-data`.clickhouse_regression_results
361-
GROUP BY architecture, test_name, job_url, job_name, report_url, start_time
362-
ORDER BY start_time DESC, length(test_name) DESC
361+
GROUP BY architecture, test_name, job_url, job_name, report_url
362+
ORDER BY length(test_name) DESC
363363
)
364364
WHERE job_url='{job_url}'
365365
AND status IN ('Fail', 'Error')

.github/workflows/release_branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ jobs:
499499
CHECKS_DATABASE_USER: ${{ secrets.CHECKS_DATABASE_USER }}
500500
CHECKS_DATABASE_PASSWORD: ${{ secrets.CHECKS_DATABASE_PASSWORD }}
501501
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
502-
PR_NUMBER: ${{ github.event.number }}
502+
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
503503
ACTIONS_RUN_URL: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
504504
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
505505
shell: bash

0 commit comments

Comments
 (0)