mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
9c0a3532a4
Fix #26971 And the UI now will display it's scheduled but not triggered by a push. <img width="954" alt="图片" src="https://github.com/go-gitea/gitea/assets/81045/d211845c-457e-4c3e-af1f-a0d654d3f365">
15 lines
278 B
Go
15 lines
278 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_21 //nolint
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddScheduleIDForActionRun(x *xorm.Engine) error {
|
|
type ActionRun struct {
|
|
ScheduleID int64
|
|
}
|
|
return x.Sync(new(ActionRun))
|
|
}
|