Skip to content

fix(ui): file upload data shows 1970 #2061

fix(ui): file upload data shows 1970

fix(ui): file upload data shows 1970 #2061

Workflow file for this run

# Catch all the things we ignore in the e2e workflow
name: e2e Skip Shim
on:
pull_request
permissions:
contents: read
# This is here to act as a shim for branch protection rules to work correctly.
# This is ugly but this seems to be the best way to do this since:
# - Job names in a workflow must be unique
# - When paths are ignored not all jobs are reported to the branch protection rules
# - Multiple jobs of the same name are still required by branch protection rules
# For more info see below:
# https://github.com/orgs/community/discussions/54877
# https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-skip-${{ github.ref }}
cancel-in-progress: true
jobs:
e2e_llama:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
e2e_playwright:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
e2e_text_embeddings:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
e2e_vllm:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
e2e_whisper:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped