diff options
author | Zettat123 <zettat123@gmail.com> | 2024-12-14 10:22:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-14 10:22:30 +0800 |
commit | 7269130d2878d51dcdf11f7081a591f85bd493e8 (patch) | |
tree | de667486f5951a3b34a0454686e8b2d1a7b7a183 /models/fixtures/action_run.yml | |
parent | a66c16dc1bca44d480317c6319144d33949bc724 (diff) | |
download | gitea-7269130d2878d51dcdf11f7081a591f85bd493e8.tar.gz gitea-7269130d2878d51dcdf11f7081a591f85bd493e8.zip |
Fix missing outputs for jobs with matrix (#32823)
Fix #32795
If a job uses a matrix, multiple `ActionRunJobs` may have the same
`JobID`. We need to merge the outputs of these jobs to make them
available to the jobs that need them.
Diffstat (limited to 'models/fixtures/action_run.yml')
-rw-r--r-- | models/fixtures/action_run.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/models/fixtures/action_run.yml b/models/fixtures/action_run.yml index a42ab77ca5..0747c46d2f 100644 --- a/models/fixtures/action_run.yml +++ b/models/fixtures/action_run.yml @@ -36,3 +36,22 @@ updated: 1683636626 need_approval: 0 approved_by: 0 +- + id: 793 + title: "job output" + repo_id: 4 + owner_id: 1 + workflow_id: "test.yaml" + index: 189 + trigger_user_id: 1 + ref: "refs/heads/master" + commit_sha: "c2d72f548424103f01ee1dc02889c1e2bff816b0" + event: "push" + is_fork_pull_request: 0 + status: 1 + started: 1683636528 + stopped: 1683636626 + created: 1683636108 + updated: 1683636626 + need_approval: 0 + approved_by: 0 |