mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	- Add `UpdateSecret` function to modify org or user repo secret - Add `DeleteSecret` function to delete secret from an organization - Add `UpdateSecretOption` struct for updating secret options - Add `UpdateOrgSecret` function to update a secret in an organization - Add `DeleteOrgSecret` function to delete a secret in an organization GitHub API 1. Update Org Secret: https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#create-or-update-an-organization-secret 2. Delete Org Secret: https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#delete-an-organization-secret --------- Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			844 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			844 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package structs
 | |
| 
 | |
| import "time"
 | |
| 
 | |
| // Secret represents a secret
 | |
| // swagger:model
 | |
| type Secret struct {
 | |
| 	// the secret's name
 | |
| 	Name string `json:"name"`
 | |
| 	// swagger:strfmt date-time
 | |
| 	Created time.Time `json:"created_at"`
 | |
| }
 | |
| 
 | |
| // CreateSecretOption options when creating secret
 | |
| // swagger:model
 | |
| type CreateSecretOption struct {
 | |
| 	// Name of the secret to create
 | |
| 	//
 | |
| 	// required: true
 | |
| 	// unique: true
 | |
| 	Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(100)"`
 | |
| 	// Data of the secret to create
 | |
| 	Data string `json:"data" binding:"Required"`
 | |
| }
 | |
| 
 | |
| // UpdateSecretOption options when updating secret
 | |
| // swagger:model
 | |
| type UpdateSecretOption struct {
 | |
| 	// Data of the secret to update
 | |
| 	//
 | |
| 	// required: true
 | |
| 	Data string `json:"data" binding:"Required"`
 | |
| }
 |