-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repos-template.lua
21 lines (19 loc) · 1.04 KB
/
repos-template.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
local config = {
labels_fetch = "repos-fetch,dependencies", -- Labels that will be added to the PRs when the `fetch-repos.lua` script is run, separated by commas in the same string(!).
labels_update = "dependencies", -- Labels that will be added to the PRs when running the `update-repos.lua` script, separated by commas in the same string(!).
}
local repos = {
{
name = "", -- Name of the repository, used as directory name as well.
url = "", -- URL link. Any VCS link (GitLab, GitHub, NotABug, etc.) should be used.
dir = "libs/", -- Directory where the repository will be cloned.
def_branch = "main" -- The default branch of the repository. If not specified, the script will try to
-- find the default branch name. Currently supports GitHub, GitLab, and BitBucket.
}
-- Add any other repositories here.
}
-- This is required so that other files can access the configurations.
return {
repos = repos,
config = config
}