Skip to content

Commit

Permalink
false
Browse files Browse the repository at this point in the history
  • Loading branch information
agilebotanist authored Feb 23, 2024
1 parent ca054b4 commit 5f28a85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: 'Security requirement analysis'
description: 'Identify whether the issue is security requirement or not'
inputs:
# rqcode-token:
# description: 'The GitHub token of the user to create GitHub Issue in RQCODE repository in case of absence of the test.'
# required: true
rqcode-token:
description: 'The GitHub token of the user to create GitHub Issue in RQCODE repository in case of absence of the test.'
required: false
label:
description: 'Label of security requirement'
required: false
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ApiService from "./apiService";
async function run(): Promise<void> {
try {
// get inputs of the action
// const rqcodeToken = getInput('rqcode-token', {required: true})
const rqcodeToken = getInput('rqcode-token', {required: false})
const token = getInput('token', {required: false})
const label = getInput('label', {required: false})
const stigs = getInput('stigs-comment', {required: false})
Expand Down

0 comments on commit 5f28a85

Please sign in to comment.