Skip to content

ColorGrading: support Rec709-Linear-D65 in NEON LUT generation (#10351) #488

ColorGrading: support Rec709-Linear-D65 in NEON LUT generation (#10351)

ColorGrading: support Rec709-Linear-D65 in NEON LUT generation (#10351) #488

Workflow file for this run

name: Linux
run-name: ${{ github.event.workflow_run.display_title }}
on:
workflow_run:
workflows: ["Postsubmit CI"]
types: [completed]
jobs:
status:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion != 'skipped' }}
steps:
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
with:
script: |
const { data: { jobs } } = await github.rest.actions.listJobsForWorkflowRun({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ github.event.workflow_run.id }}
});
const job = jobs.find(j => j.name === 'build-linux');
if (job && job.conclusion !== 'success') {
core.setFailed(`Linux build failed: ${job.conclusion}`);
} else if (!job) {
core.warning(`Job build-linux not found in the workflow run.`);
}