Gitness: next generation of Drone

This commit is contained in:
Steffen Lange 2023-11-05 16:09:43 +01:00
parent acd742b08c
commit 2b61466db1
2 changed files with 14 additions and 14 deletions

14
modules/Gitness.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Gitness extends PatchBase {
function __construct() {
parent::__construct('Harness Inc.', 'Gitness', 'https://gitness.com/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/harness/gitness/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>