2
0

feat(actions): allow admins to manage all runners
Some checks failed
Build and Release / Create Release (push) Has been skipped
Build and Release / Unit Tests (push) Failing after 15s
Build and Release / Lint (push) Failing after 42s
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, macos) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, macos) (push) Has been skipped
Build and Release / Build Binary (linux/arm64) (push) Has been skipped
Build and Release / Integration Tests (PostgreSQL) (push) Failing after 1m13s

System administrators can now view, edit, and delete any runner regardless of context (repo/org/user). Previously, admins were restricted by the same ownership rules as regular users. Also removes redundant deleted_unix filter in GetUnhealthyRunners query.
This commit is contained in:
2026-01-26 20:43:59 -05:00
parent a99a5ce168
commit 32bb4d6faa
3 changed files with 18 additions and 12 deletions

View File

@@ -280,7 +280,7 @@ func CompleteCleanupRequest(ctx context.Context, id int64, success bool, bytesFr
// GetUnhealthyRunners returns all runners that are unhealthy
func GetUnhealthyRunners(ctx context.Context) ([]*ActionRunner, error) {
var runners []*ActionRunner
err := db.GetEngine(ctx).Where("deleted_unix = 0").Find(&runners)
err := db.GetEngine(ctx).Find(&runners)
if err != nil {
return nil, err
}