2024-03-31 17:06:54 +02:00
|
|
|
## Global options
|
|
|
|
|
|
|
|
# Accessing GitHub APIs is only possible using a personal access token. The
|
|
|
|
# token doesn't need any scopes set since it is used to query public
|
|
|
|
# repositories.
|
2023-08-09 20:59:42 +02:00
|
|
|
gh_token = ""
|
2024-03-31 17:06:54 +02:00
|
|
|
|
|
|
|
# Relative path to a cloned SBo repository.
|
2023-08-15 10:33:19 +02:00
|
|
|
repository = "./slackbuilds"
|
2024-03-31 17:06:54 +02:00
|
|
|
|
|
|
|
# After one package is updated a commit is created on this branch. The branch is
|
|
|
|
# not pushed or reset automatically.
|
2023-08-15 10:33:19 +02:00
|
|
|
branch = "user/nick/updates"
|
2024-03-31 17:06:54 +02:00
|
|
|
|
|
|
|
# If some packages use custom sources and these sources a generated during the
|
|
|
|
# update, this option specifies the base URL where the sources can be downloaded
|
|
|
|
# afterwads. The full URL written into the .info file contains download_url,
|
|
|
|
# followed by the package name and source file name. This option should probably
|
|
|
|
# be configured consistently with the remote_path.
|
2023-08-17 22:07:09 +02:00
|
|
|
download_url = "https://example.com/some/path"
|
2024-03-31 17:06:54 +02:00
|
|
|
|
2024-05-11 19:01:41 +02:00
|
|
|
# If a package updater generates a source tarball, the tarball is uploaded with
|
|
|
|
# a command given in this parameter. The parameter is a array where the first
|
|
|
|
# element is the command with the following elements being the command
|
|
|
|
# arguments. The command supports 2 placeholders:
|
|
|
|
# %s - Path to the source archive.
|
|
|
|
# %c - Package category.
|
|
|
|
upload_command = ["scp", "%s", "example.com:/srv/httpd/some/path/%c"]
|
2023-08-28 21:05:47 +02:00
|
|
|
|
2024-03-31 17:06:54 +02:00
|
|
|
## Maintainer specific options
|
2023-08-28 21:05:47 +02:00
|
|
|
[maintainer]
|
2024-03-31 17:06:54 +02:00
|
|
|
|
|
|
|
# Whether the git commits should be signed with a GPG signature using the
|
|
|
|
# default key.
|
2023-09-27 19:58:16 +02:00
|
|
|
signature = false
|