GitHub Actions for gha-trigger
- Update the commit status according to the job status
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: gha-trigger/end-action@main
if: always()
with:
github_token: ${{steps.start.outputs.github_app_token}}
state: ${{job.status}}
github_token
: GitHub Access Token to update a commit statusstate
: GitHub Actions current job status
needs
: needs context
Environment Variables must be set by gha-trigger/set-env-action.
Nothing.