Skip to content

An action to update ServceNow business applications with release notes

License

Notifications You must be signed in to change notification settings

agrc/service-now-worknote-action

Repository files navigation

Service Now Worknote Action

Pull Request Events Push Events

This action posts a worknote to a Service Now table based on a Github Action environment review.

A comment is posted to the table with the reviewers email and any comments.

image

Usage

Workflow Permissions

This workflow will need the following permissions in your workflow file:

permissions:
  deployments: read

You can now consume the action by referencing the v1 branch

- name: Create deployment notification
  uses: agrc/service-now-worknote-action@v1
  with:
    repo-token: ${{ github.token }}
    username: ${{ secrets.SN_USERNAME }}
    password: ${{ secrets.SN_PASSWORD }}
    instance-name: ${{ secrets.SN_INSTANCE }}
    table-name: ${{ secrets.SN_TABLE }}
    system-id: ${{ secrets.SN_SYS_ID }}