mirror of
https://github.com/go-gitea/gitea
synced 2026-06-11 05:03:08 +00:00
- Add GitHub-style Actions **job summaries** support
(`GITHUB_STEP_SUMMARY` / `workflow/SUMMARY.md`) and render them on the
run Summary view.
- Store uploaded summaries internally in the DB (not as downloadable
artifacts).
- Add runtime-token endpoint for runners to upload summaries:
- `PUT
/api/actions_pipeline/_apis/pipelines/workflows/{run_id}/jobs/{job_id}/summary`
- Advertise support to runners via `RunnerService.Declare` response
header:
- `X-Gitea-Actions-Capabilities: job-summary`
- Devtest: extend `/devtest/repo-action-view/...` to include mock
`jobSummaries` for previewing UI rendering.
## Compatibility
- New Gitea + old runner: no summary upload → UI shows nothing (no
behavior change)
- New runner + old Gitea: capability not advertised → runner skips
upload (no behavior change)
## Screenshot:
<img width="2017" height="729"
src="https://github.com/user-attachments/assets/31f8b945-50c4-40e1-9f40-382901a53013"
/>
Fixes #23721
PR on gitea-runner https://gitea.com/gitea/runner/pulls/917
---------
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com>
90 lines
2.0 KiB
TypeScript
90 lines
2.0 KiB
TypeScript
// see "models/actions/status.go", if it needs to be used somewhere else, move it to a shared file like "types/actions.ts"
|
|
export type ActionsStatus = 'unknown' | 'waiting' | 'running' | 'cancelling' | 'success' | 'failure' | 'cancelled' | 'skipped' | 'blocked';
|
|
export type ActionsArtifactStatus = 'expired' | 'completed';
|
|
|
|
export type ActionsRun = {
|
|
repoId: number,
|
|
link: string,
|
|
viewLink: string,
|
|
title: string,
|
|
titleHTML: string,
|
|
status: ActionsStatus,
|
|
canCancel: boolean,
|
|
canApprove: boolean,
|
|
canRerun: boolean,
|
|
canRerunFailed: boolean,
|
|
canDeleteArtifact: boolean,
|
|
done: boolean,
|
|
workflowID: string,
|
|
workflowLink: string,
|
|
isSchedule: boolean,
|
|
runAttempt: number,
|
|
attempts: Array<ActionsRunAttempt>,
|
|
duration: string,
|
|
triggeredAt: number,
|
|
triggerEvent: string,
|
|
pullRequest?: {
|
|
index: string,
|
|
link: string,
|
|
} | null,
|
|
jobs: Array<ActionsJob>,
|
|
jobSummaries?: Array<ActionsJobSummary>,
|
|
commit: {
|
|
localeCommit: string,
|
|
localePushedBy: string,
|
|
shortSHA: string,
|
|
link: string,
|
|
pusher: {
|
|
displayName: string,
|
|
link: string,
|
|
avatarLink: string,
|
|
},
|
|
branch: {
|
|
name: string,
|
|
link: string,
|
|
isDeleted: boolean,
|
|
},
|
|
},
|
|
};
|
|
|
|
export type ActionsJobSummary = {
|
|
jobId: number,
|
|
jobName: string,
|
|
summaryHTML: string,
|
|
};
|
|
|
|
export type ActionsRunAttempt = {
|
|
attempt: number;
|
|
status: ActionsStatus;
|
|
done: boolean;
|
|
link: string;
|
|
current: boolean;
|
|
latest: boolean;
|
|
triggeredAt: number;
|
|
triggerUserName: string;
|
|
triggerUserLink: string;
|
|
triggerUserAvatar: string;
|
|
};
|
|
|
|
export type ActionsJob = {
|
|
id: number;
|
|
link: string;
|
|
jobId: string;
|
|
name: string;
|
|
status: ActionsStatus;
|
|
canRerun: boolean;
|
|
needs?: string[];
|
|
duration: string;
|
|
|
|
isReusableCaller: boolean;
|
|
parentJobID: number; // 0 for top-level jobs.
|
|
callUses?: string;
|
|
};
|
|
|
|
export type ActionsArtifact = {
|
|
name: string;
|
|
size: number;
|
|
status: ActionsArtifactStatus;
|
|
expiresUnix: number;
|
|
};
|