Skip to content

Commit

Permalink
fix: remove service now step
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh authored Oct 3, 2022
1 parent 5910618 commit 0eabf70
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 31 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,4 @@ jobs:
github-app-key: ${{ secrets.UGRC_RELEASE_BOT_APP_KEY }}
github-app-name: ${{ secrets.UGRC_RELEASE_BOT_NAME }}
github-app-email: ${{ secrets.UGRC_RELEASE_BOT_EMAIL }}
service-now-instance: ${{ secrets.SN_INSTANCE }}
service-now-table: ${{ secrets.SN_TABLE }}
service-now-system-id: ${{ secrets.SN_SYS_ID }}
service-now-username: ${{ secrets.SN_USERNAME }}
service-now-password: ${{ secrets.SN_PASSWORD }}
```
26 changes: 0 additions & 26 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,6 @@ 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
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 @@ -122,14 +107,3 @@ 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:
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 0eabf70

Please sign in to comment.