|
295 | 295 | "verb": "delete",
|
296 | 296 | "requestPath": "/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}"
|
297 | 297 | },
|
| 298 | + { |
| 299 | + "slug": "list-organization-variables", |
| 300 | + "subcategory": "variables", |
| 301 | + "verb": "get", |
| 302 | + "requestPath": "/orgs/{org}/actions/variables" |
| 303 | + }, |
| 304 | + { |
| 305 | + "slug": "create-an-organization-variable", |
| 306 | + "subcategory": "variables", |
| 307 | + "verb": "post", |
| 308 | + "requestPath": "/orgs/{org}/actions/variables" |
| 309 | + }, |
| 310 | + { |
| 311 | + "slug": "get-an-organization-variable", |
| 312 | + "subcategory": "variables", |
| 313 | + "verb": "get", |
| 314 | + "requestPath": "/orgs/{org}/actions/variables/{name}" |
| 315 | + }, |
| 316 | + { |
| 317 | + "slug": "update-an-organization-variable", |
| 318 | + "subcategory": "variables", |
| 319 | + "verb": "patch", |
| 320 | + "requestPath": "/orgs/{org}/actions/variables/{name}" |
| 321 | + }, |
| 322 | + { |
| 323 | + "slug": "delete-an-organization-variable", |
| 324 | + "subcategory": "variables", |
| 325 | + "verb": "delete", |
| 326 | + "requestPath": "/orgs/{org}/actions/variables/{name}" |
| 327 | + }, |
| 328 | + { |
| 329 | + "slug": "list-selected-repositories-for-an-organization-variable", |
| 330 | + "subcategory": "variables", |
| 331 | + "verb": "get", |
| 332 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories" |
| 333 | + }, |
| 334 | + { |
| 335 | + "slug": "set-selected-repositories-for-an-organization-variable", |
| 336 | + "subcategory": "variables", |
| 337 | + "verb": "put", |
| 338 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories" |
| 339 | + }, |
| 340 | + { |
| 341 | + "slug": "add-selected-repository-to-an-organization-variable", |
| 342 | + "subcategory": "variables", |
| 343 | + "verb": "put", |
| 344 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories/{repository_id}" |
| 345 | + }, |
| 346 | + { |
| 347 | + "slug": "remove-selected-repository-from-an-organization-variable", |
| 348 | + "subcategory": "variables", |
| 349 | + "verb": "delete", |
| 350 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories/{repository_id}" |
| 351 | + }, |
298 | 352 | {
|
299 | 353 | "slug": "list-artifacts-for-a-repository",
|
300 | 354 | "subcategory": "artifacts",
|
|
607 | 661 | "verb": "delete",
|
608 | 662 | "requestPath": "/repos/{owner}/{repo}/actions/secrets/{secret_name}"
|
609 | 663 | },
|
| 664 | + { |
| 665 | + "slug": "list-repository-variables", |
| 666 | + "subcategory": "variables", |
| 667 | + "verb": "get", |
| 668 | + "requestPath": "/repos/{owner}/{repo}/actions/variables" |
| 669 | + }, |
| 670 | + { |
| 671 | + "slug": "create-a-repository-variable", |
| 672 | + "subcategory": "variables", |
| 673 | + "verb": "post", |
| 674 | + "requestPath": "/repos/{owner}/{repo}/actions/variables" |
| 675 | + }, |
| 676 | + { |
| 677 | + "slug": "get-a-repository-variable", |
| 678 | + "subcategory": "variables", |
| 679 | + "verb": "get", |
| 680 | + "requestPath": "/repos/{owner}/{repo}/actions/variables/{name}" |
| 681 | + }, |
| 682 | + { |
| 683 | + "slug": "update-a-repository-variable", |
| 684 | + "subcategory": "variables", |
| 685 | + "verb": "patch", |
| 686 | + "requestPath": "/repos/{owner}/{repo}/actions/variables/{name}" |
| 687 | + }, |
| 688 | + { |
| 689 | + "slug": "delete-a-repository-variable", |
| 690 | + "subcategory": "variables", |
| 691 | + "verb": "delete", |
| 692 | + "requestPath": "/repos/{owner}/{repo}/actions/variables/{name}" |
| 693 | + }, |
610 | 694 | {
|
611 | 695 | "slug": "list-repository-workflows",
|
612 | 696 | "subcategory": "workflows",
|
|
672 | 756 | "subcategory": "secrets",
|
673 | 757 | "verb": "delete",
|
674 | 758 | "requestPath": "/repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}"
|
| 759 | + }, |
| 760 | + { |
| 761 | + "slug": "list-environment-variables", |
| 762 | + "subcategory": "variables", |
| 763 | + "verb": "get", |
| 764 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables" |
| 765 | + }, |
| 766 | + { |
| 767 | + "slug": "create-an-environment-variable", |
| 768 | + "subcategory": "variables", |
| 769 | + "verb": "post", |
| 770 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables" |
| 771 | + }, |
| 772 | + { |
| 773 | + "slug": "get-an-environment-variable", |
| 774 | + "subcategory": "variables", |
| 775 | + "verb": "get", |
| 776 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables/{name}" |
| 777 | + }, |
| 778 | + { |
| 779 | + "slug": "update-an-environment-variable", |
| 780 | + "subcategory": "variables", |
| 781 | + "verb": "patch", |
| 782 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables/{name}" |
| 783 | + }, |
| 784 | + { |
| 785 | + "slug": "delete-an-environment-variable", |
| 786 | + "subcategory": "variables", |
| 787 | + "verb": "delete", |
| 788 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables/{name}" |
675 | 789 | }
|
676 | 790 | ],
|
677 | 791 | "activity": [
|
|
4090 | 4204 | "verb": "delete",
|
4091 | 4205 | "requestPath": "/orgs/{org}/actions/secrets/{secret_name}/repositories/{repository_id}"
|
4092 | 4206 | },
|
| 4207 | + { |
| 4208 | + "slug": "list-organization-variables", |
| 4209 | + "subcategory": "variables", |
| 4210 | + "verb": "get", |
| 4211 | + "requestPath": "/orgs/{org}/actions/variables" |
| 4212 | + }, |
| 4213 | + { |
| 4214 | + "slug": "create-an-organization-variable", |
| 4215 | + "subcategory": "variables", |
| 4216 | + "verb": "post", |
| 4217 | + "requestPath": "/orgs/{org}/actions/variables" |
| 4218 | + }, |
| 4219 | + { |
| 4220 | + "slug": "get-an-organization-variable", |
| 4221 | + "subcategory": "variables", |
| 4222 | + "verb": "get", |
| 4223 | + "requestPath": "/orgs/{org}/actions/variables/{name}" |
| 4224 | + }, |
| 4225 | + { |
| 4226 | + "slug": "update-an-organization-variable", |
| 4227 | + "subcategory": "variables", |
| 4228 | + "verb": "patch", |
| 4229 | + "requestPath": "/orgs/{org}/actions/variables/{name}" |
| 4230 | + }, |
| 4231 | + { |
| 4232 | + "slug": "delete-an-organization-variable", |
| 4233 | + "subcategory": "variables", |
| 4234 | + "verb": "delete", |
| 4235 | + "requestPath": "/orgs/{org}/actions/variables/{name}" |
| 4236 | + }, |
| 4237 | + { |
| 4238 | + "slug": "list-selected-repositories-for-an-organization-variable", |
| 4239 | + "subcategory": "variables", |
| 4240 | + "verb": "get", |
| 4241 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories" |
| 4242 | + }, |
| 4243 | + { |
| 4244 | + "slug": "set-selected-repositories-for-an-organization-variable", |
| 4245 | + "subcategory": "variables", |
| 4246 | + "verb": "put", |
| 4247 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories" |
| 4248 | + }, |
| 4249 | + { |
| 4250 | + "slug": "add-selected-repository-to-an-organization-variable", |
| 4251 | + "subcategory": "variables", |
| 4252 | + "verb": "put", |
| 4253 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories/{repository_id}" |
| 4254 | + }, |
| 4255 | + { |
| 4256 | + "slug": "remove-selected-repository-from-an-organization-variable", |
| 4257 | + "subcategory": "variables", |
| 4258 | + "verb": "delete", |
| 4259 | + "requestPath": "/orgs/{org}/actions/variables/{name}/repositories/{repository_id}" |
| 4260 | + }, |
4093 | 4261 | {
|
4094 | 4262 | "slug": "list-artifacts-for-a-repository",
|
4095 | 4263 | "subcategory": "artifacts",
|
|
4402 | 4570 | "verb": "delete",
|
4403 | 4571 | "requestPath": "/repos/{owner}/{repo}/actions/secrets/{secret_name}"
|
4404 | 4572 | },
|
| 4573 | + { |
| 4574 | + "slug": "list-repository-variables", |
| 4575 | + "subcategory": "variables", |
| 4576 | + "verb": "get", |
| 4577 | + "requestPath": "/repos/{owner}/{repo}/actions/variables" |
| 4578 | + }, |
| 4579 | + { |
| 4580 | + "slug": "create-a-repository-variable", |
| 4581 | + "subcategory": "variables", |
| 4582 | + "verb": "post", |
| 4583 | + "requestPath": "/repos/{owner}/{repo}/actions/variables" |
| 4584 | + }, |
| 4585 | + { |
| 4586 | + "slug": "get-a-repository-variable", |
| 4587 | + "subcategory": "variables", |
| 4588 | + "verb": "get", |
| 4589 | + "requestPath": "/repos/{owner}/{repo}/actions/variables/{name}" |
| 4590 | + }, |
| 4591 | + { |
| 4592 | + "slug": "update-a-repository-variable", |
| 4593 | + "subcategory": "variables", |
| 4594 | + "verb": "patch", |
| 4595 | + "requestPath": "/repos/{owner}/{repo}/actions/variables/{name}" |
| 4596 | + }, |
| 4597 | + { |
| 4598 | + "slug": "delete-a-repository-variable", |
| 4599 | + "subcategory": "variables", |
| 4600 | + "verb": "delete", |
| 4601 | + "requestPath": "/repos/{owner}/{repo}/actions/variables/{name}" |
| 4602 | + }, |
4405 | 4603 | {
|
4406 | 4604 | "slug": "list-repository-workflows",
|
4407 | 4605 | "subcategory": "workflows",
|
|
4467 | 4665 | "subcategory": "secrets",
|
4468 | 4666 | "verb": "delete",
|
4469 | 4667 | "requestPath": "/repositories/{repository_id}/environments/{environment_name}/secrets/{secret_name}"
|
| 4668 | + }, |
| 4669 | + { |
| 4670 | + "slug": "list-environment-variables", |
| 4671 | + "subcategory": "variables", |
| 4672 | + "verb": "get", |
| 4673 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables" |
| 4674 | + }, |
| 4675 | + { |
| 4676 | + "slug": "create-an-environment-variable", |
| 4677 | + "subcategory": "variables", |
| 4678 | + "verb": "post", |
| 4679 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables" |
| 4680 | + }, |
| 4681 | + { |
| 4682 | + "slug": "get-an-environment-variable", |
| 4683 | + "subcategory": "variables", |
| 4684 | + "verb": "get", |
| 4685 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables/{name}" |
| 4686 | + }, |
| 4687 | + { |
| 4688 | + "slug": "update-an-environment-variable", |
| 4689 | + "subcategory": "variables", |
| 4690 | + "verb": "patch", |
| 4691 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables/{name}" |
| 4692 | + }, |
| 4693 | + { |
| 4694 | + "slug": "delete-an-environment-variable", |
| 4695 | + "subcategory": "variables", |
| 4696 | + "verb": "delete", |
| 4697 | + "requestPath": "/repositories/{repository_id}/environments/{environment_name}/variables/{name}" |
4470 | 4698 | }
|
4471 | 4699 | ],
|
4472 | 4700 | "activity": [
|
|
0 commit comments