{"id":24950376,"url":"https://github.com/deblockt/cucumber-report-annotations-action","last_synced_at":"2025-07-27T16:07:54.121Z","repository":{"id":38447203,"uuid":"279071289","full_name":"deblockt/cucumber-report-annotations-action","owner":"deblockt","description":"a github action to publish cucumber report on pull request annotations ","archived":false,"fork":false,"pushed_at":"2025-07-03T18:23:14.000Z","size":8666,"stargazers_count":18,"open_issues_count":3,"forks_count":9,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-10T09:00:51.349Z","etag":null,"topics":["cucumber","github-actions","repport"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deblockt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-07-12T13:35:13.000Z","updated_at":"2025-07-03T18:22:31.000Z","dependencies_parsed_at":"2024-04-19T07:44:01.174Z","dependency_job_id":"a1a91e71-5081-46e9-b978-b8e3d6ada1bc","html_url":"https://github.com/deblockt/cucumber-report-annotations-action","commit_stats":{"total_commits":36,"total_committers":4,"mean_commits":9.0,"dds":0.2777777777777778,"last_synced_commit":"7ca3591b5618f5e64a249f5a9a47c4472ac3744c"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/deblockt/cucumber-report-annotations-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deblockt%2Fcucumber-report-annotations-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deblockt%2Fcucumber-report-annotations-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deblockt%2Fcucumber-report-annotations-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deblockt%2Fcucumber-report-annotations-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deblockt","download_url":"https://codeload.github.com/deblockt/cucumber-report-annotations-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deblockt%2Fcucumber-report-annotations-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267383722,"owners_count":24078571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cucumber","github-actions","repport"],"created_at":"2025-02-02T23:16:42.022Z","updated_at":"2025-07-27T16:07:54.088Z","avatar_url":"https://github.com/deblockt.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cucumber Report Annotations Action\n\nThis GitHub Action publishes action annotations from Cucumber reports.\n\n## Example\n\n```yaml\n- uses: deblockt/cucumber-report-annotations-action@v1.7\n  with:\n    access-token: ${{ secrets.GITHUB_TOKEN }}\n    path: \"**/cucumber-report.json\"\n```\n\n![demo](doc/demo.png)\n\n## Supported Formats\n\nThis GitHub Action supports two formats:\n\n- **JSON**: The deprecated Cucumber report format. Prefer using the message format. If you use this format, the file extension should be `.json`.\n- **Message**: The new Cucumber report format using NDJSON (newline-delimited JSON). If you use this format, the file extension should be `.ndjson`.\n\n## Parameters\n\nAll parameters in this action are optional, allowing flexibility in configuration based on your needs.\n\n| **Input Name**                          | **Description**                                                                         | **Default**               | **Options**                     |\n|-----------------------------------------|-----------------------------------------------------------------------------------------|---------------------------|---------------------------------|\n| **access-token**                        | GitHub token.                                                                           | `${{ github.token }}`     |                                 |\n| **path**                                | Glob pattern to locate Cucumber JSON files.                                             | `**/cucumber-report.json` |                                 |\n| **name**                                | The name of the check.                                                                  | `Cucumber report`         |                                 |\n| **check-status-on-error**               | Check status for Cucumber errors.                                                       | `failure`                 | `success`, `neutral`, `failure` |\n| **check-status-on-undefined**           | Check status for undefined steps.                                                       | `success`                 | `success`, `neutral`, `failure` |\n| **check-status-on-pending**             | Check status for pending steps.                                                         | `success`                 | `success`, `neutral`, `failure` |\n| **annotation-status-on-error**          | Annotation status for errors.                                                           | `failure`                 | `notice`, `warning`, `failure`  |\n| **annotation-status-on-undefined**      | Annotation status for undefined steps. No annotation if not set.                        |                           | `notice`, `warning`, `failure`  |\n| **annotation-status-on-pending**        | Annotation status for pending steps. No annotation if not set.                          |                           | `notice`, `warning`, `failure`  |\n| **show-number-of-error-on-check-title** | Show the number of errors in the check title (visible in PR checks).                    | `true`                    | `true`, `false`                 |\n| **show-global-summary-report**          | Display a full summary report for each feature file.                                    | `false`                   | `true`, `false`                 |\n| **number-of-test-error-to-fail-job**    | Number of test errors required to fail the build. \u003cbr\u003e `-1` prevents the build from failing. | `-1`                      |                                 |\n\n## Outputs\n\nThe following variables are available as output (with the JSON file name used as a base, spaces replaced by underscores, and without the `.json` extension):\n\n- `${output}_failed_scenarios`: Number of failed scenarios.\n- `${output}_undefined_scenarios`: Number of undefined scenarios.\n- `${output}_pending_scenarios`: Number of pending scenarios.\n- `${output}_passed_scenarios`: Number of passed scenarios.\n- `${output}_failed_steps`: Number of failed steps.\n- `${output}_undefined_steps`: Number of undefined steps.\n- `${output}_pending_steps`: Number of pending steps.\n- `${output}_passed_steps`: Number of passed steps.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeblockt%2Fcucumber-report-annotations-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeblockt%2Fcucumber-report-annotations-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeblockt%2Fcucumber-report-annotations-action/lists"}