Skip to content

vivantehealth/update-commit-status-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

update-commit-status

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