Skip to content

Commit

Permalink
issues write permission
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 6, 2024
1 parent 55e01da commit 72c560b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

permissions:
contents: read
issues: write

jobs:
test-typescript:
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export async function run(): Promise<void> {
const runStaticAnalysis: boolean = getBooleanInput('run-static-analysis')
const runCodeFormatting: boolean = getBooleanInput('run-code-formatting')
const runTests: boolean = getBooleanInput('run-tests')
// const runCoverage: boolean = getBooleanInput('run-coverage')
// const coveragePassScore: string = getInput('coverage-pass-score')
// const createComment: boolean = getBooleanInput('create-comment')
// const runCoverage: boolean = getBooleanInput('run-coverage');
// const coveragePassScore: string = getInput('coverage-pass-score');
// const createComment: boolean = getBooleanInput('create-comment');

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

0 comments on commit 72c560b

Please sign in to comment.