Rename to Gitea.Declarative (#4)

This commit is contained in:
Patrick Stevens
2022-12-30 10:26:59 +00:00
committed by GitHub
parent c409daf659
commit 4ae932072e
25 changed files with 133 additions and 129 deletions

View File

@@ -0,0 +1,34 @@
{
"users": {
"admin": {
"isAdmin": true,
"email": "some-admin-email@example.com",
"visibility": "private"
},
"nonadmin-user": {
"isAdmin": false,
"email": "some-nonadmin-email@example.com",
"website": "https://example.com",
"visibility": "public"
}
},
"repos": {
"nonadmin-user": {
"synced-from-github-repo-1": {
"description": "A repo that is imported from GitHub",
"gitHub": "https://github.com/MyName/repo-name"
},
"synced-from-github-repo-2": {
"description": "Another repo that is imported from GitHub",
"gitHub": "https://github.com/MyName/repo-name-2"
},
"new-repo": {
"description": "A repo that's created directly on this Gitea",
"native": {
"defaultBranch": "main",
"private": false
}
}
}
}
}