@@ -182,7 +182,7 @@ func (Action) DeleteSecret(ctx *context.APIContext) {
182182 // required: true
183183 // responses:
184184 // "204":
185- // description: delete one secret of the organization
185+ // description: delete one secret of the repository
186186 // "400":
187187 // "$ref": "#/responses/error"
188188 // "404":
@@ -553,7 +553,7 @@ func (Action) CreateRegistrationToken(ctx *context.APIContext) {
553553
554554// ListRunners get repo-level runners
555555func (Action ) ListRunners (ctx * context.APIContext ) {
556- // swagger:operation GET /repos/{owner}/{repo}/actions/runners organization getRunners
556+ // swagger:operation GET /repos/{owner}/{repo}/actions/runners repository getRepoRunners
557557 // ---
558558 // summary: Get repo-level runners
559559 // produces:
@@ -571,7 +571,7 @@ func (Action) ListRunners(ctx *context.APIContext) {
571571 // required: true
572572 // responses:
573573 // "200":
574- // "$ref": "#/definitions/RunnerList "
574+ // "$ref": "#/definitions/ActionRunnersResponse "
575575 // "400":
576576 // "$ref": "#/responses/error"
577577 // "404":
@@ -581,7 +581,7 @@ func (Action) ListRunners(ctx *context.APIContext) {
581581
582582// GetRunner get an repo-level runner
583583func (Action ) GetRunner (ctx * context.APIContext ) {
584- // swagger:operation GET /repos/{owner}/{repo}/actions/runners/{runner_id} organization getRunner
584+ // swagger:operation GET /repos/{owner}/{repo}/actions/runners/{runner_id} repository getRepoRunner
585585 // ---
586586 // summary: Get an repo-level runner
587587 // produces:
@@ -604,7 +604,7 @@ func (Action) GetRunner(ctx *context.APIContext) {
604604 // required: true
605605 // responses:
606606 // "200":
607- // "$ref": "#/definitions/Runner "
607+ // "$ref": "#/definitions/ActionRunner "
608608 // "400":
609609 // "$ref": "#/responses/error"
610610 // "404":
@@ -614,7 +614,7 @@ func (Action) GetRunner(ctx *context.APIContext) {
614614
615615// DeleteRunner delete an repo-level runner
616616func (Action ) DeleteRunner (ctx * context.APIContext ) {
617- // swagger:operation DELETE /repos/{owner}/{repo}/actions/runners/{runner_id} organization deleteRunner
617+ // swagger:operation DELETE /repos/{owner}/{repo}/actions/runners/{runner_id} repository deleteRepoRunner
618618 // ---
619619 // summary: Delete an repo-level runner
620620 // produces:
0 commit comments