You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/routers/api/v1/swagger
Chester 6709e28da7
Add API endpoints for getting action jobs status (#26673)
Sample of response, it is similar to Github actions

ref
https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#list-workflow-runs-for-a-repository

``` json
{
    "workflow_runs": [
        {
            "id": 3,
            "name": "Explore-Gitea-Actions",
            "head_branch": "main",
            "head_sha": "6d8d29a9f7a01ded8f8aeb64341cb31ee1ab5f19",
            "run_number": 3,
            "event": "push",
            "display_title": "More job",
            "status": "success",
            "workflow_id": "demo2.yaml",
            "url": "/chester/test/actions/runs/3",
            "created_at": "2023-08-22T13:41:33-04:00",
            "updated_at": "2023-08-22T13:41:37-04:00",
            "run_started_at": "2023-08-22T13:41:33-04:00"
        },
        {
            "id": 2,
            "name": "Explore-Gitea-Actions",
            "head_branch": "main",
            "head_sha": "6d8d29a9f7a01ded8f8aeb64341cb31ee1ab5f19",
            "run_number": 2,
            "event": "push",
            "display_title": "More job",
            "status": "success",
            "workflow_id": "demo.yaml",
            "url": "/chester/test/actions/runs/2",
            "created_at": "2023-08-22T13:41:30-04:00",
            "updated_at": "2023-08-22T13:41:33-04:00",
            "run_started_at": "2023-08-22T13:41:30-04:00"
        },
        {
            "id": 1,
            "name": "Explore-Gitea-Actions",
            "head_branch": "main",
            "head_sha": "e5369ab054cae79899ba36e45ee82811a6e0acd5",
            "run_number": 1,
            "event": "push",
            "display_title": "Add job",
            "status": "failure",
            "workflow_id": "demo.yaml",
            "url": "/chester/test/actions/runs/1",
            "created_at": "2023-08-22T13:15:21-04:00",
            "updated_at": "2023-08-22T13:18:10-04:00",
            "run_started_at": "2023-08-22T13:15:21-04:00"
        }
    ],
    "total_count": 3
}
```

---------

Co-authored-by: yp05327 <576951401@qq.com>
Co-authored-by: puni9869 <80308335+puni9869@users.noreply.github.com>
4 weeks ago
..
action.go Add API for `Variables` (#29520) 2 months ago
activity.go Add activity feeds API (#23494) 1 year ago
activitypub.go Implement FSFE REUSE for golang files (#21840) 2 years ago
app.go Implement FSFE REUSE for golang files (#21840) 2 years ago
cron.go Implement FSFE REUSE for golang files (#21840) 2 years ago
issue.go Implement FSFE REUSE for golang files (#21840) 2 years ago
key.go Implement FSFE REUSE for golang files (#21840) 2 years ago
misc.go Add API for Label templates (#24602) 1 year ago
nodeinfo.go Implement FSFE REUSE for golang files (#21840) 2 years ago
notify.go Implement FSFE REUSE for golang files (#21840) 2 years ago
options.go Add API for `Variables` (#29520) 2 months ago
org.go Implement FSFE REUSE for golang files (#21840) 2 years ago
package.go Implement FSFE REUSE for golang files (#21840) 2 years ago
repo.go Add API endpoints for getting action jobs status (#26673) 4 weeks ago
settings.go Implement FSFE REUSE for golang files (#21840) 2 years ago
user.go Fix lint-swagger warning (#29787) 2 months ago