mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
a67861b4dc
* Benchmark Integration TESTS * CI: add benching-arm64 pipeline * BenchmarkRepo: name test case tests * Fix BenchmarkRepoBranchCommit beside Create new Branch * CI: benching use amd64 * rm total broken "BenchmarkRepo" * dont run benchmark in CI
28 lines
878 B
Go
28 lines
878 B
Go
// Copyright 2019 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 integrations
|
|
|
|
import (
|
|
"code.gitea.io/gitea/models"
|
|
"code.gitea.io/gitea/modules/repofiles"
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
func createFileInBranch(user *models.User, repo *models.Repository, treePath, branchName, content string) (*api.FileResponse, error) {
|
|
opts := &repofiles.UpdateRepoFileOptions{
|
|
OldBranch: branchName,
|
|
TreePath: treePath,
|
|
Content: content,
|
|
IsNewFile: true,
|
|
Author: nil,
|
|
Committer: nil,
|
|
}
|
|
return repofiles.CreateOrUpdateRepoFile(repo, user, opts)
|
|
}
|
|
|
|
func createFile(user *models.User, repo *models.Repository, treePath string) (*api.FileResponse, error) {
|
|
return createFileInBranch(user, repo, treePath, repo.DefaultBranch, "This is a NEW file")
|
|
}
|