Skip to content

Commit

Permalink
[GitlabIssueBridge] Fix example values for MR
Browse files Browse the repository at this point in the history
These values are used for testing and PR artifacts, but
https://gitlab.com/fdroid/fdroidclient currently has no MR !2099,
leading to a HTTP 404 error. This just uses issue RSS-Bridge#1 and MR !1.

The epics are repository-independent, so no example values can fit both
issue/MR and epic templates.
  • Loading branch information
Mynacol committed Aug 27, 2023
1 parent 18a8a51 commit 56e7a0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bridges/GitlabIssueBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ class GitlabIssueBridge extends BridgeAbstract
'i' => [
'name' => 'Issue number',
'type' => 'number',
'exampleValue' => '2099',
'exampleValue' => '1',
'required' => true
]
],
'Merge Request comments' => [
'i' => [
'name' => 'Merge Request number',
'type' => 'number',
'exampleValue' => '2099',
'exampleValue' => '1',
'required' => true
]
],
'Epic comments' => [
'i' => [
'name' => 'Epic number',
'type' => 'number',
'exampleValue' => '2099',
'exampleValue' => '1',
'required' => true
]
]
Expand Down

0 comments on commit 56e7a0e

Please sign in to comment.