Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions .github/actions/create_workflow_report/action.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
name: Create and Upload Combined Report
description: Create and upload a combined CI report
inputs:
workflow_config:
description: "Workflow config"
required: true
final:
description: "Control whether the report is final or a preview"
required: false
default: "false"
runs:
using: "composite"
steps:
- name: Create workflow config
shell: bash
run: |
mkdir -p ./ci/tmp
cat > ./ci/tmp/workflow_status.json << 'EOF'
${{ inputs.workflow_config }}
EOF

- name: Create and upload workflow report
env:
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
Expand All @@ -30,7 +19,7 @@ runs:
pip install clickhouse-driver==0.2.8 numpy==1.26.4 pandas==2.0.3 jinja2==3.1.5

CMD="python3 .github/actions/create_workflow_report/create_workflow_report.py"
ARGS="--actions-run-url $ACTIONS_RUN_URL --known-fails tests/broken_tests.yaml --cves --pr-number $PR_NUMBER"
ARGS="--actions-run-url $ACTIONS_RUN_URL --known-fails --cves --pr-number $PR_NUMBER"

set +e -x
if [[ "$FINAL" == "false" ]]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,9 @@

{%- if pr_number == 0 %}
<div id="prs-in-release" class="tabcontent">
{%- if prs_in_release_search_url %}
<p>See the PRs on <a href="{{ prs_in_release_search_url }}">GitHub</a></p>
{%- endif %}
{{ prs_in_release_html }}
</div>
{%- endif %}
Expand Down
Loading
Loading