mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
class GitHubPullRequestBridge extends GithubIssueBridge
|
|
{
|
|
const NAME = 'GitHub Pull Request';
|
|
const DESCRIPTION = 'Returns the pull request or comments of a pull request of a GitHub project';
|
|
|
|
const PARAMETERS = [
|
|
'global' => [
|
|
'u' => [
|
|
'name' => 'User name',
|
|
'exampleValue' => 'RSS-Bridge',
|
|
'required' => true
|
|
],
|
|
'p' => [
|
|
'name' => 'Project name',
|
|
'exampleValue' => 'rss-bridge',
|
|
'required' => true
|
|
]
|
|
],
|
|
'Project Pull Requests' => [
|
|
'c' => [
|
|
'name' => 'Show Pull Request Comments',
|
|
'type' => 'checkbox'
|
|
],
|
|
'q' => [
|
|
'name' => 'Search Query',
|
|
'defaultValue' => 'is:pr is:open sort:created-desc',
|
|
'required' => true
|
|
]
|
|
],
|
|
'Pull Request comments' => [
|
|
'i' => [
|
|
'name' => 'Pull Request number',
|
|
'type' => 'number',
|
|
'exampleValue' => '2100',
|
|
'required' => true
|
|
]
|
|
]
|
|
];
|
|
|
|
const BRIDGE_OPTIONS = [0 => 'Project Pull Requests', 1 => 'Pull Request comments'];
|
|
const URL_PATH = 'pull';
|
|
const SEARCH_QUERY_PATH = 'pulls';
|
|
}
|