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 e183dc1 commit 981ef8bCopy full SHA for 981ef8b
src/index.ts
@@ -1,7 +1,6 @@
1
import * as core from '@actions/core';
2
import * as github from '@actions/github';
3
import styles from 'ansi-styles';
4
-import * as exec from '@actions/exec';
5
6
async function run() {
7
try {
@@ -16,9 +15,6 @@ async function run() {
16
15
throw new Error(`Input ${styles.italic.open}token${styles.italic.close} is missing.`)
17
}
18
19
- const out = await exec.getExecOutput("ls", ["-la"]);
20
- core.notice(out.stdout);
21
-
22
const allowedUserIds = allowedIds.split(',');
23
24
const octokit = github.getOctokit(token, {
0 commit comments