You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ListActionRuns return a filtered list of ActionRun
700
+
funcListActionRuns(ctx*context.APIContext) {
701
+
// swagger:operation GET /repos/{owner}/{repo}/actions/runs repository ListActionRuns
702
+
// ---
703
+
// summary: List a repository's action runs
704
+
// produces:
705
+
// - application/json
706
+
// parameters:
707
+
// - name: owner
708
+
// in: path
709
+
// description: owner of the repo
710
+
// type: string
711
+
// required: true
712
+
// - name: repo
713
+
// in: path
714
+
// description: name of the repo
715
+
// type: string
716
+
// required: true
717
+
// - name: page
718
+
// in: query
719
+
// description: page number of results to return (1-based)
720
+
// type: integer
721
+
// - name: limit
722
+
// in: query
723
+
// description: page size of results, default maximum page size is 50
724
+
// type: integer
725
+
// - name: event
726
+
// in: query
727
+
// description: Returns workflow run triggered by the specified events. For example, `push`, `pull_request` or `workflow_dispatch`.
728
+
// type: array
729
+
// items:
730
+
// type: string
731
+
// - name: status
732
+
// in: query
733
+
// description: |
734
+
// Returns workflow runs with the check run status or conclusion that is specified. For example, a conclusion can be success or a status can be in_progress. Only Forgejo Actions can set a status of waiting, pending, or requested.
0 commit comments