The purpose of this action is to update the commit status where it would otherwise not be updated, such as when a deploy to an environment is manually triggered
To make this action available to other repos, it needs to be internal
visiblity, and "Accessible from repositories in the 'vivantehealth' organization" set in Settings->Actions
Suggested use:
jobs:
run:
name: Run
runs-on: ubuntu-latest
steps:
- name: Update commit status failure
if: ${{ failure() }}
uses: vivantehealth/update-commit-status-action@v0
with:
state: "failure"
context: ${{ github.workflow }}