PatchBot/modules/Forgejo.php
2024-05-31 19:03:08 +02:00

14 lines
334 B
PHP

<?php
class Forgejo extends PatchBase {
function __construct() {
parent::__construct('Forgejo Authors', 'Forgejo', 'https://forgejo.org/');
}
function check() : bool {
if ($this->fetch_json('https://codeberg.org/api/v1/repos/forgejo/forgejo/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>