feat(api): return run_number in workflow dispatch (#7286)

- This is a follow up on #7193 and resolves #6312.
- The ID by itself is not very useful, so also return the index of the workflow run.

Co-authored-by: Klaus Fyhn <klausfyhn@gmail.com>
Co-authored-by: Klaus Fyhn <klfj@mir-robots.com>
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7286
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: klausfyhn <klausfyhn@noreply.codeberg.org>
Co-committed-by: klausfyhn <klausfyhn@noreply.codeberg.org>
This commit is contained in:
klausfyhn 2025-03-25 21:22:32 +00:00 committed by Gusted
parent 513319c1ec
commit c531b8f020
4 changed files with 76 additions and 2 deletions

View file

@ -22,6 +22,8 @@ type DispatchWorkflowOption struct {
type DispatchWorkflowRun struct { type DispatchWorkflowRun struct {
// the workflow run id // the workflow run id
ID int64 `json:"id"` ID int64 `json:"id"`
// a unique number for each run of a repository
RunNumber int64 `json:"run_number"`
// the jobs name // the jobs name
Jobs []string `json:"jobs"` Jobs []string `json:"jobs"`
} }

View file

@ -640,6 +640,8 @@ func DispatchWorkflow(ctx *context.APIContext) {
// schema: // schema:
// "$ref": "#/definitions/DispatchWorkflowOption" // "$ref": "#/definitions/DispatchWorkflowOption"
// responses: // responses:
// "201":
// "$ref": "#/responses/DispatchWorkflowRun"
// "204": // "204":
// "$ref": "#/responses/empty" // "$ref": "#/responses/empty"
// "404": // "404":
@ -682,6 +684,7 @@ func DispatchWorkflow(ctx *context.APIContext) {
workflowRun := &api.DispatchWorkflowRun{ workflowRun := &api.DispatchWorkflowRun{
ID: run.ID, ID: run.ID,
RunNumber: run.Index,
Jobs: jobs, Jobs: jobs,
} }

View file

@ -5414,6 +5414,9 @@
} }
], ],
"responses": { "responses": {
"201": {
"$ref": "#/responses/DispatchWorkflowRun"
},
"204": { "204": {
"$ref": "#/responses/empty" "$ref": "#/responses/empty"
}, },
@ -23193,6 +23196,12 @@
"type": "string" "type": "string"
}, },
"x-go-name": "Jobs" "x-go-name": "Jobs"
},
"run_number": {
"description": "a unique number for each run of a repository",
"type": "integer",
"format": "int64",
"x-go-name": "RunNumber"
} }
}, },
"x-go-package": "code.gitea.io/gitea/modules/structs" "x-go-package": "code.gitea.io/gitea/modules/structs"

View file

@ -4,15 +4,20 @@
package integration package integration
import ( import (
"fmt"
"net/http" "net/http"
"net/url"
"strings"
"testing" "testing"
actions_model "code.gitea.io/gitea/models/actions" actions_model "code.gitea.io/gitea/models/actions"
auth_model "code.gitea.io/gitea/models/auth" auth_model "code.gitea.io/gitea/models/auth"
repo_model "code.gitea.io/gitea/models/repo" repo_model "code.gitea.io/gitea/models/repo"
unit_model "code.gitea.io/gitea/models/unit"
"code.gitea.io/gitea/models/unittest" "code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user" user_model "code.gitea.io/gitea/models/user"
api "code.gitea.io/gitea/modules/structs" api "code.gitea.io/gitea/modules/structs"
files_service "code.gitea.io/gitea/services/repository/files"
"code.gitea.io/gitea/tests" "code.gitea.io/gitea/tests"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
@ -41,3 +46,58 @@ func TestAPISearchActionJobs_RepoRunner(t *testing.T) {
assert.Len(t, jobs, 1) assert.Len(t, jobs, 1)
assert.EqualValues(t, job.ID, jobs[0].ID) assert.EqualValues(t, job.ID, jobs[0].ID)
} }
func TestAPIWorkflowDispatchReturnInfo(t *testing.T) {
onGiteaRun(t, func(t *testing.T, u *url.URL) {
workflowName := "dispatch.yml"
user2 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
token := getUserToken(t, user2.LowerName, auth_model.AccessTokenScopeWriteRepository)
// create the repo
repo, _, f := tests.CreateDeclarativeRepo(t, user2, "api-repo-workflow-dispatch",
[]unit_model.Type{unit_model.TypeActions}, nil,
[]*files_service.ChangeRepoFile{
{
Operation: "create",
TreePath: fmt.Sprintf(".forgejo/workflows/%s", workflowName),
ContentReader: strings.NewReader(`name: WD
on: [workflow-dispatch]
jobs:
t1:
runs-on: docker
steps:
- run: echo "test 1"
t2:
runs-on: docker
steps:
- run: echo "test 2"
`,
),
},
},
)
defer f()
req := NewRequestWithJSON(
t,
http.MethodPost,
fmt.Sprintf(
"/api/v1/repos/%s/%s/actions/workflows/%s/dispatches",
repo.OwnerName, repo.Name, workflowName,
),
&api.DispatchWorkflowOption{
Ref: repo.DefaultBranch,
ReturnRunInfo: true,
},
)
req.AddTokenAuth(token)
res := MakeRequest(t, req, http.StatusCreated)
run := new(api.DispatchWorkflowRun)
DecodeJSON(t, res, run)
assert.NotZero(t, run.ID)
assert.NotZero(t, run.RunNumber)
assert.Len(t, run.Jobs, 2)
})
}