https://github.com/hellofresh/action-compile-job-status
GitHub Action compiling all job status of a workflow run
https://github.com/hellofresh/action-compile-job-status
github-actions open-source wiz-reliability-platform-cloud-runtime
Last synced: 3 months ago
JSON representation
GitHub Action compiling all job status of a workflow run
- Host: GitHub
- URL: https://github.com/hellofresh/action-compile-job-status
- Owner: hellofresh
- License: apache-2.0
- Created: 2022-03-17T15:51:44.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-10-07T05:29:09.000Z (7 months ago)
- Last Synced: 2025-12-01T06:49:40.143Z (5 months ago)
- Topics: github-actions, open-source, wiz-reliability-platform-cloud-runtime
- Language: JavaScript
- Homepage:
- Size: 4.36 MB
- Stars: 0
- Watchers: 112
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# action-compile-job-status
You can use branch protection rules in GitHub pull requests to require specific status checks to pass before merging a pull request. In more complex workflows, especially if you have different workflow files to perform different jobs, you might want to require a specific status check that might not run for every PR, making it impossible to define a required status check.
With this action, you can consolidate workflow results in a single PR status check, making it possible to define a required check.
# Usage
```yaml
jobs:
compile:
name: compile-status
# Explicit permissions required for the action
# Can be omitted if default permission for GITHUB_TOKEN in the organization/repository level are set in permissive mode
#
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
permissions:
checks: write
actions: read
steps:
- uses: hellofresh/action-compile-job-status@v2
with:
check-run-name: ci-checks
check-run-title: Required check
ignore-jobs: ".*Best-practice|Report|compile*"
```