-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sync-issue-pr-and-more
- Loading branch information
Showing
91 changed files
with
748 additions
and
1,146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package actions | ||
|
||
import ( | ||
"context" | ||
|
||
"code.gitea.io/gitea/models/db" | ||
) | ||
|
||
// ActionTaskOutput represents an output of ActionTask. | ||
// So the outputs are bound to a task, that means when a completed job has been rerun, | ||
// the outputs of the job will be reset because the task is new. | ||
// It's by design, to avoid the outputs of the old task to be mixed with the new task. | ||
type ActionTaskOutput struct { | ||
ID int64 | ||
TaskID int64 `xorm:"INDEX UNIQUE(task_id_output_key)"` | ||
OutputKey string `xorm:"VARCHAR(255) UNIQUE(task_id_output_key)"` | ||
OutputValue string `xorm:"MEDIUMTEXT"` | ||
} | ||
|
||
// FindTaskOutputByTaskID returns the outputs of the task. | ||
func FindTaskOutputByTaskID(ctx context.Context, taskID int64) ([]*ActionTaskOutput, error) { | ||
var outputs []*ActionTaskOutput | ||
return outputs, db.GetEngine(ctx).Where("task_id=?", taskID).Find(&outputs) | ||
} | ||
|
||
// FindTaskOutputKeyByTaskID returns the keys of the outputs of the task. | ||
func FindTaskOutputKeyByTaskID(ctx context.Context, taskID int64) ([]string, error) { | ||
var keys []string | ||
return keys, db.GetEngine(ctx).Table(ActionTaskOutput{}).Where("task_id=?", taskID).Cols("output_key").Find(&keys) | ||
} | ||
|
||
// InsertTaskOutputIfNotExist inserts a new task output if it does not exist. | ||
func InsertTaskOutputIfNotExist(ctx context.Context, taskID int64, key, value string) error { | ||
return db.WithTx(ctx, func(ctx context.Context) error { | ||
sess := db.GetEngine(ctx) | ||
if exist, err := sess.Exist(&ActionTaskOutput{TaskID: taskID, OutputKey: key}); err != nil { | ||
return err | ||
} else if exist { | ||
return nil | ||
} | ||
_, err := sess.Insert(&ActionTaskOutput{ | ||
TaskID: taskID, | ||
OutputKey: key, | ||
OutputValue: value, | ||
}) | ||
return err | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package v1_20 //nolint | ||
|
||
import ( | ||
"xorm.io/xorm" | ||
) | ||
|
||
func AddActionTaskOutputTable(x *xorm.Engine) error { | ||
type ActionTaskOutput struct { | ||
ID int64 | ||
TaskID int64 `xorm:"INDEX UNIQUE(task_id_output_key)"` | ||
OutputKey string `xorm:"VARCHAR(255) UNIQUE(task_id_output_key)"` | ||
OutputValue string `xorm:"MEDIUMTEXT"` | ||
} | ||
return x.Sync(new(ActionTaskOutput)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.