{"id":42492284,"url":"https://github.com/allure-framework/allure-action","last_synced_at":"2026-01-28T12:24:31.441Z","repository":{"id":322857054,"uuid":"1000209172","full_name":"allure-framework/allure-action","owner":"allure-framework","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-12T14:35:26.000Z","size":425374,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-12T17:52:09.696Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/allure-framework.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-11T12:33:49.000Z","updated_at":"2026-01-12T08:50:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/allure-framework/allure-action","commit_stats":null,"previous_names":["allure-framework/allure-action"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/allure-framework/allure-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allure-framework","download_url":"https://codeload.github.com/allure-framework/allure-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28845124,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T10:53:21.605Z","status":"ssl_error","status_checked_at":"2026-01-28T10:53:20.789Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-28T12:24:30.897Z","updated_at":"2026-01-28T12:24:31.435Z","avatar_url":"https://github.com/allure-framework.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Allure Action\n\n\u003e GitHub action to render Allure Report summary right in your Pull Requests\n\n[\u003cimg src=\"https://allurereport.org/public/img/allure-report.svg\" height=\"85px\" alt=\"Allure Report logo\" align=\"right\" /\u003e](https://allurereport.org \"Allure Report\")\n\n- Learn more about Allure Report at https://allurereport.org\n- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report\n- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community\n- 📢 [Official annoucements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – be in touch with the latest updates\n- 💬 [General Discussion ](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community\n\n---\n\n## Overview\n\nThis actions scans given report directory for data and posts a summary comment that includes:\n\n- Summary statistics about all test results\n- New, flaky and retry tests\n- Adds remote report link if the report has been published to the Allure Service\n\n## Usage\n\nAdd `pull-requests` and `checks` permissions to your workflow to make possible posting comments to Pull Requests:\n\n```yaml\npermissions:\n  pull-requests: write\n  checks: write\n```\n\nThen, add the action to your workflow right after your tests, which produce Allure Report:\n\n```yaml\n- name: Run tests\n  run |-\n    # run your tests that generate Allure Report data\n     \n- name: Run Allure Action\n  uses: allure-framework/allure-report@v0\n  with:\n    # Path to the generated report directory\n    # By default, it's set to `./allure-report`\n    report-directory: \"./\"\n    # Github Token that uses for posting the comments in Pull Requests\n    github-token: ${{ secrets.GITHUB_TOKEN }}\n```\n\nIf everything is set up correctly and required reports data is present, the Action will post a comment with Allure Report summary to your Pull Request, like this:\n\n\u003cimg width=\"617\" alt=\"image\" src=\"https://github.com/user-attachments/assets/3a3c13a8-feb6-47ce-9657-2ce3278440c4\" /\u003e\n\n## Configuration\n\nThe action utilizes Allure 3 Runtime configuration file (`allurerc.js` or `allurerc.mjs`) and use `output` field as a path, where it should search for the generated reports.\n\n### Remote reports\n\nIf you want to be able to open remote reports automatically hosted on Allure Service, provide `allureService` configuration to the `allurerc.js` configuration file:\n\n```diff\nimport { defineConfig } from \"allure\";\nimport { env } from \"node:process\";\n\nexport default defineConfig({\n  output: \"allure-report\",\n+  allureService: {\n+    url: env.ALLURE_SERVICE_URL,\n+    project: env.ALLURE_SERVICE_PROJECT,\n+    accessToken: env.ALLURE_SERVICE_ACCESS_TOKEN,\n+  }\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallure-framework%2Fallure-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallure-framework%2Fallure-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallure-framework%2Fallure-action/lists"}