Skip to content

Commit

Permalink
feat: add service now deployment notification job step
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Sep 20, 2022
1 parent 11378bd commit 6420543
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,22 @@ inputs:
description: Release Please release type
required: false
default: node
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
service-now-system-id:
description: the child table to write to
required: false
service-now-username:
description: the service account name
required: false
service-now-password:
description: the service account password
required: false
outputs:
release_created:
description: A release was successfully created
Expand Down Expand Up @@ -107,3 +123,11 @@ runs:
git checkout dev
git rebase main
git push --set-upstream origin dev
- name: 🔔 Create deployment notification
uses: agrc/service-now-worknote-action@v1
if: ${{ inputs.service-now-system-id != '' }}
with:
system-id: ${{ inputs.service-now-system_id }
username: ${{ inputs.service-now-username }}
password: ${{ inputs.service-now-password }}

0 comments on commit 6420543

Please sign in to comment.