Skip to content

Commit

Permalink
fix: pass all required params to service now action
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis authored and steveoh committed Oct 3, 2022
1 parent 8afda3e commit 61f7ca5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ inputs:
service-now-instance:
description: the sub address to https://{SN_INSTANCE}.service-now.com
required: false
default: utah
service-now-table:
description: the parent table to write to
required: false
Expand Down Expand Up @@ -128,6 +127,9 @@ runs:
uses: agrc/service-now-worknote-action@v1
if: ${{ inputs.service-now-system-id != '' }}
with:
system-id: ${{ inputs.service-now-system_id }}
repo-token: ${{ inputs.repo-token }}
username: ${{ inputs.service-now-username }}
password: ${{ inputs.service-now-password }}
instance-name: ${{ inputs.service-now-instance }}
table-name: ${{ inputs.service-now-table }}
system-id: ${{ inputs.service-now-system-id }}

0 comments on commit 61f7ca5

Please sign in to comment.