@@ -46,7 +46,7 @@ func (Action) ListActionsSecrets(ctx *context.APIContext) {
46
46
// parameters:
47
47
// - name: owner
48
48
// in: path
49
- // description: owner of the repository
49
+ // description: username of the user or organization owning the repository
50
50
// type: string
51
51
// required: true
52
52
// - name: repo
@@ -106,7 +106,7 @@ func (Action) CreateOrUpdateSecret(ctx *context.APIContext) {
106
106
// parameters:
107
107
// - name: owner
108
108
// in: path
109
- // description: owner of the repository
109
+ // description: username of the user or organization owning the repository
110
110
// type: string
111
111
// required: true
112
112
// - name: repo
@@ -168,7 +168,7 @@ func (Action) DeleteSecret(ctx *context.APIContext) {
168
168
// parameters:
169
169
// - name: owner
170
170
// in: path
171
- // description: owner of the repository
171
+ // description: username of the user or organization owning the repository
172
172
// type: string
173
173
// required: true
174
174
// - name: repo
@@ -216,7 +216,7 @@ func (Action) GetVariable(ctx *context.APIContext) {
216
216
// parameters:
217
217
// - name: owner
218
218
// in: path
219
- // description: name of the owner
219
+ // description: username of the user or organization owning the repository
220
220
// type: string
221
221
// required: true
222
222
// - name: repo
@@ -270,7 +270,7 @@ func (Action) DeleteVariable(ctx *context.APIContext) {
270
270
// parameters:
271
271
// - name: owner
272
272
// in: path
273
- // description: name of the owner
273
+ // description: username of the user or organization owning the repository
274
274
// type: string
275
275
// required: true
276
276
// - name: repo
@@ -319,7 +319,7 @@ func (Action) CreateVariable(ctx *context.APIContext) {
319
319
// parameters:
320
320
// - name: owner
321
321
// in: path
322
- // description: name of the owner
322
+ // description: username of the user or organization owning the repository
323
323
// type: string
324
324
// required: true
325
325
// - name: repo
@@ -386,7 +386,7 @@ func (Action) UpdateVariable(ctx *context.APIContext) {
386
386
// parameters:
387
387
// - name: owner
388
388
// in: path
389
- // description: name of the owner
389
+ // description: username of the user or organization owning the repository
390
390
// type: string
391
391
// required: true
392
392
// - name: repo
@@ -458,7 +458,7 @@ func (Action) ListVariables(ctx *context.APIContext) {
458
458
// parameters:
459
459
// - name: owner
460
460
// in: path
461
- // description: name of the owner
461
+ // description: username of the user or organization owning the repository
462
462
// type: string
463
463
// required: true
464
464
// - name: repo
@@ -516,7 +516,7 @@ func (Action) GetRegistrationToken(ctx *context.APIContext) {
516
516
// parameters:
517
517
// - name: owner
518
518
// in: path
519
- // description: owner of the repo
519
+ // description: username of the user or organization owning the repository
520
520
// type: string
521
521
// required: true
522
522
// - name: repo
@@ -541,7 +541,7 @@ func (Action) CreateRegistrationToken(ctx *context.APIContext) {
541
541
// parameters:
542
542
// - name: owner
543
543
// in: path
544
- // description: owner of the repo
544
+ // description: username of the user or organization owning the repository
545
545
// type: string
546
546
// required: true
547
547
// - name: repo
@@ -566,7 +566,7 @@ func (Action) ListRunners(ctx *context.APIContext) {
566
566
// parameters:
567
567
// - name: owner
568
568
// in: path
569
- // description: owner of the repo
569
+ // description: username of the user or organization owning the repository
570
570
// type: string
571
571
// required: true
572
572
// - name: repo
@@ -594,7 +594,7 @@ func (Action) GetRunner(ctx *context.APIContext) {
594
594
// parameters:
595
595
// - name: owner
596
596
// in: path
597
- // description: owner of the repo
597
+ // description: username of the user or organization owning the repository
598
598
// type: string
599
599
// required: true
600
600
// - name: repo
@@ -627,7 +627,7 @@ func (Action) DeleteRunner(ctx *context.APIContext) {
627
627
// parameters:
628
628
// - name: owner
629
629
// in: path
630
- // description: owner of the repo
630
+ // description: username of the user or organization owning the repository
631
631
// type: string
632
632
// required: true
633
633
// - name: repo
@@ -778,7 +778,7 @@ func ListActionTasks(ctx *context.APIContext) {
778
778
// parameters:
779
779
// - name: owner
780
780
// in: path
781
- // description: owner of the repo
781
+ // description: username of the user or organization owning the repository
782
782
// type: string
783
783
// required: true
784
784
// - name: repo
@@ -842,7 +842,7 @@ func ActionsListRepositoryWorkflows(ctx *context.APIContext) {
842
842
// parameters:
843
843
// - name: owner
844
844
// in: path
845
- // description: owner of the repo
845
+ // description: username of the user or organization owning the repository
846
846
// type: string
847
847
// required: true
848
848
// - name: repo
@@ -882,7 +882,7 @@ func ActionsGetWorkflow(ctx *context.APIContext) {
882
882
// parameters:
883
883
// - name: owner
884
884
// in: path
885
- // description: owner of the repo
885
+ // description: username of the user or organization owning the repository
886
886
// type: string
887
887
// required: true
888
888
// - name: repo
@@ -932,7 +932,7 @@ func ActionsDisableWorkflow(ctx *context.APIContext) {
932
932
// parameters:
933
933
// - name: owner
934
934
// in: path
935
- // description: owner of the repo
935
+ // description: username of the user or organization owning the repository
936
936
// type: string
937
937
// required: true
938
938
// - name: repo
@@ -980,7 +980,7 @@ func ActionsDispatchWorkflow(ctx *context.APIContext) {
980
980
// parameters:
981
981
// - name: owner
982
982
// in: path
983
- // description: owner of the repo
983
+ // description: username of the user or organization owning the repository
984
984
// type: string
985
985
// required: true
986
986
// - name: repo
@@ -1059,7 +1059,7 @@ func ActionsEnableWorkflow(ctx *context.APIContext) {
1059
1059
// parameters:
1060
1060
// - name: owner
1061
1061
// in: path
1062
- // description: owner of the repo
1062
+ // description: username of the user or organization owning the repository
1063
1063
// type: string
1064
1064
// required: true
1065
1065
// - name: repo
@@ -1261,7 +1261,7 @@ func GetArtifactsOfRun(ctx *context.APIContext) {
1261
1261
// parameters:
1262
1262
// - name: owner
1263
1263
// in: path
1264
- // description: name of the owner
1264
+ // description: username of the user or organization owning the repository
1265
1265
// type: string
1266
1266
// required: true
1267
1267
// - name: repo
@@ -1330,7 +1330,7 @@ func DeleteActionRun(ctx *context.APIContext) {
1330
1330
// parameters:
1331
1331
// - name: owner
1332
1332
// in: path
1333
- // description: name of the owner
1333
+ // description: username of the user or organization owning the repository
1334
1334
// type: string
1335
1335
// required: true
1336
1336
// - name: repo
@@ -1382,7 +1382,7 @@ func GetArtifacts(ctx *context.APIContext) {
1382
1382
// parameters:
1383
1383
// - name: owner
1384
1384
// in: path
1385
- // description: name of the owner
1385
+ // description: username of the user or organization owning the repository
1386
1386
// type: string
1387
1387
// required: true
1388
1388
// - name: repo
@@ -1443,7 +1443,7 @@ func GetArtifact(ctx *context.APIContext) {
1443
1443
// parameters:
1444
1444
// - name: owner
1445
1445
// in: path
1446
- // description: name of the owner
1446
+ // description: username of the user or organization owning the repository
1447
1447
// type: string
1448
1448
// required: true
1449
1449
// - name: repo
@@ -1492,7 +1492,7 @@ func DeleteArtifact(ctx *context.APIContext) {
1492
1492
// parameters:
1493
1493
// - name: owner
1494
1494
// in: path
1495
- // description: name of the owner
1495
+ // description: username of the user or organization owning the repository
1496
1496
// type: string
1497
1497
// required: true
1498
1498
// - name: repo
@@ -1559,7 +1559,7 @@ func DownloadArtifact(ctx *context.APIContext) {
1559
1559
// parameters:
1560
1560
// - name: owner
1561
1561
// in: path
1562
- // description: name of the owner
1562
+ // description: username of the user or organization owning the repository
1563
1563
// type: string
1564
1564
// required: true
1565
1565
// - name: repo
0 commit comments