Forgejo · Schema
ExternalTracker
ExternalTracker represents settings for external tracker
GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests
Properties
| Name | Type | Description |
|---|---|---|
| external_tracker_format | string | External Issue Tracker URL Format. Use the placeholders {user}, {repo} and {index} for the username, repository name and issue index. |
| external_tracker_regexp_pattern | string | External Issue Tracker issue regular expression |
| external_tracker_style | string | External Issue Tracker Number Format, either `numeric`, `alphanumeric`, or `regexp` |
| external_tracker_url | string | URL of external issue tracker. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ExternalTracker",
"description": "ExternalTracker represents settings for external tracker",
"type": "object",
"properties": {
"external_tracker_format": {
"description": "External Issue Tracker URL Format. Use the placeholders {user}, {repo} and {index} for the username, repository name and issue index.",
"type": "string",
"x-go-name": "ExternalTrackerFormat"
},
"external_tracker_regexp_pattern": {
"description": "External Issue Tracker issue regular expression",
"type": "string",
"x-go-name": "ExternalTrackerRegexpPattern"
},
"external_tracker_style": {
"description": "External Issue Tracker Number Format, either `numeric`, `alphanumeric`, or `regexp`",
"type": "string",
"x-go-name": "ExternalTrackerStyle"
},
"external_tracker_url": {
"description": "URL of external issue tracker.",
"type": "string",
"x-go-name": "ExternalTrackerURL"
}
},
"x-go-package": "forgejo.org/modules/structs"
}