We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc282e commit b668b13Copy full SHA for b668b13
README.md
@@ -5,11 +5,9 @@
5
## Usage
6
7
```
8
-git clone https://github.com/octoherd/script-close-renovate-dashboard-issues.git
9
-$ npx @octoherd/cli \
+$ npx @octoherd/script-close-renovate-dashboard-issues \
10
--octoherd-token 0123456789012345678901234567890123456789 \
11
- script-close-renovate-dashboard-issues/script.js \
12
- "octokit/*"
+ "octokit/*"
13
14
15
## Licenses
cli.js
@@ -0,0 +1,6 @@
1
+#!/usr/bin/env node
2
+
3
+import { script } from "./script.js";
4
+import { run } from "@octoherd/cli/run";
+run(script);
0 commit comments