Gitea Branch
kind: gitea/branch
On this page
source | condition | target |
---|---|---|
✔ | ✔ | ✗ |
Description
The Gitea "branch" plugin allows to manipulate Gitea repository branches.
source
When used as a "source", the Gitea branch plugin allows to get a Gitea repository branch according the version filter rule provided.
condition
When used as a "condition". the Gitea branch plugin allows to test that specific Gitea branch exist.
target
Target is not supported, feel free to manifest your interest by opening an issue on updatecil/updatecli/issues, or highlighting an existing one.
Parameters
Name | Type | Description | Required |
---|---|---|---|
branch | string | [C] Branch specifies the branch name | |
owner | string | [S][C] Owner specifies repository owner | |
repository | string | [S][C] Repository specifies the name of a repository for a specific owner | |
token | string | “token” specifies the credential used to authenticate with Gitea API remark: A token is a sensitive information, it’s recommended to not set this value directly in the configuration file but to use an environment variable or a SOPS file. The value can be set to
https://github.com/getsops/sops | |
url | string | “url” defines the Gitea url to interact with | |
username | string | “username” defines the username used to authenticate with Gitea API | |
versionfilter | object | [S] VersionFilter provides parameters to specify version pattern and its type like regex, semver, or just latest. | |
kind | string | specifies the version kind such as semver, regex, or latest | |
pattern | string | specifies the version pattern according the version kind | |
strict | boolean | strict enforce strict versioning rule. Only used for semantic versioning at this time |
Example
# updatecli.yaml
name: "Test Gitea branch"
sources:
default:
kind: "gitea/branch"
spec:
url: "try.gitea.io"
owner: "olblak"
repository: "updatecli-test"
branch: main
conditions:
default:
name: Show condition usage without source input
kind: "gitea/branch"
disablesourceinput: true
spec:
url: "try.gitea.io"
owner: "olblak"
repository: "updatecli-test"
branch: "main"
sourcedefault:
name: Show condition using branch name fetch from source input
kind: "gitea/branch"
sourceid: "default"
spec:
url: "try.gitea.io"
owner: "olblak"
repository: "updatecli-test"