Skip to content

Commit 72c560b

Browse files
committed
issues write permission
1 parent 55e01da commit 72c560b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
permissions:
1212
contents: read
13+
issues: write
1314

1415
jobs:
1516
test-typescript:

src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ export async function run(): Promise<void> {
3131
const runStaticAnalysis: boolean = getBooleanInput('run-static-analysis')
3232
const runCodeFormatting: boolean = getBooleanInput('run-code-formatting')
3333
const runTests: boolean = getBooleanInput('run-tests')
34-
// const runCoverage: boolean = getBooleanInput('run-coverage')
35-
// const coveragePassScore: string = getInput('coverage-pass-score')
36-
// const createComment: boolean = getBooleanInput('create-comment')
34+
// const runCoverage: boolean = getBooleanInput('run-coverage');
35+
// const coveragePassScore: string = getInput('coverage-pass-score');
36+
// const createComment: boolean = getBooleanInput('create-comment');
3737

3838
// if (runStaticAnalysis) { then run static analysis script }
3939
const analyzeStr: stepResponse | undefined = runStaticAnalysis

0 commit comments

Comments
 (0)