Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vijaycs85/reroller
https://github.com/vijaycs85/reroller
contribution drupal
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vijaycs85/reroller
- Owner: vijaycs85
- Created: 2017-05-21T02:49:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-21T02:53:53.000Z (over 7 years ago)
- Last Synced: 2024-11-17T07:28:37.522Z (2 months ago)
- Topics: contribution, drupal
- Language: PHP
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REROLLER
Checks if latest patch on RTBCed issues are still apply with HEAD on Drupal.org## Usage
```php
3060,
// Status RTBC.
'field_issue_status' => 14,
// Number of issues to fetch.
'limit' => 1,
// 8.4.x branch.
'field_issue_version' => $branch . '-dev',
];$controller = Controller::create($drupal_root, $debug);
$controller->byBranch($query, $branch);
```### Result
#### Debug ON```bash
# Success
➜ php index.php
Already on '8.4.x'
M core/modules/user/src/Controller/UserController.php
M core/modules/user/src/Tests/UserLoginTest.php
Your branch is up-to-date with 'origin/8.4.x'.
HEAD is now at b5742e6 Issue #2795051 by legovaer, Lendude, dawehner: Move \Drupal\simpletest\WebTestBase::drupalBuildEntityView into a trait and make it available in BTB
From https://git.drupal.org/project/drupal
* branch 8.4.x -> FETCH_HEAD
Current branch 8.4.x is up to date.
patch in 992540 is green!# Error
➜ php index.php
Already on '8.4.x'
M core/modules/user/src/Controller/UserController.php
M core/modules/user/src/Tests/UserLoginTest.php
Your branch is up-to-date with 'origin/8.4.x'.
error: patch failed: core/modules/user/src/Controller/UserController.php:6
error: core/modules/user/src/Controller/UserController.php: patch does not apply
error: patch failed: core/modules/user/src/Tests/UserLoginTest.php:63
error: core/modules/user/src/Tests/UserLoginTest.php: patch does not apply
Can't apply patch in https://www.drupal.org/node/992540
```
### Debug OFF
```bash# Success
➜ php index.php
patch in 992540 is green!# Error
➜ php index.php
Can't apply the latest patch at https://www.drupal.org/node/992540
```