Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.36 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.36 KB

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 }}