Skip to content

Instantly share code, notes, and snippets.

View Amitminer's full-sized avatar
🌴
Currently Inactive

AmitxD Amitminer

🌴
Currently Inactive
View GitHub Profile
@Amitminer
Amitminer / workflow-remover.php
Created August 16, 2023 03:32
a script to remove all failed workflows(GitHub Actions).. written in PHP
<?php
class GitHubAPI {
private $token;
private $owner;
private $repo;
public function __construct($token, $owner, $repo) {
$this->token = $token;
$this->owner = $owner;