This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// @ts-check | |
import { createReadStream } from "node:fs"; | |
import { realpath } from "node:fs/promises"; | |
import * as rl from "node:readline/promises"; | |
import * as path from "node:path"; | |
const fileToProcess = process.argv[2]; | |
if (!fileToProcess) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare(strict_types = 1); | |
use Phan\Issue; | |
use Phan\PluginV3; | |
use Phan\CodeBase; | |
use Phan\IssueInstance; | |
use Phan\PluginV3\FinalizeProcessCapability; | |
use Phan\PluginV3\SubscribeEmitIssueCapability; | |
final class GitHubWorkflowCommandsPlugin extends PluginV3 implements FinalizeProcessCapability, SubscribeEmitIssueCapability { |
OlderNewer