Some checks failed
testing / testing (push) Failing after 1m38s
Add support for repository Action Variables: - Create - Read - Update - Delete Also added deleting for repository Action Secret Co-authored-by: Marek Mościchowski <[email protected]> Co-authored-by: techknowlogick <[email protected]> Reviewed-on: #677 Reviewed-by: techknowlogick <[email protected]> Co-authored-by: Marek Mościchowski <[email protected]> Co-committed-by: Marek Mościchowski <[email protected]>
14 lines
391 B
Go
14 lines
391 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gitea
|
|
|
|
// RepoActionVariable represents a action variable
|
|
type RepoActionVariable struct {
|
|
OwnerID int64 `json:"owner_id"`
|
|
RepoID int64 `json:"repo_id"`
|
|
Name string `json:"name"`
|
|
Value string `json:"data"`
|
|
}
|