{"id":21700543,"url":"https://github.com/helaili/test-plan-action","last_synced_at":"2026-04-14T23:33:12.604Z","repository":{"id":78363933,"uuid":"317607867","full_name":"helaili/test-plan-action","owner":"helaili","description":"Manage you test plans with an automated project board","archived":false,"fork":false,"pushed_at":"2020-12-04T21:23:29.000Z","size":1279,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-11T19:21:33.231Z","etag":null,"topics":["actions","test"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/helaili.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-12-01T16:51:09.000Z","updated_at":"2023-07-25T14:41:19.000Z","dependencies_parsed_at":"2023-03-11T13:00:28.581Z","dependency_job_id":null,"html_url":"https://github.com/helaili/test-plan-action","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/helaili/test-plan-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helaili%2Ftest-plan-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helaili%2Ftest-plan-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helaili%2Ftest-plan-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helaili%2Ftest-plan-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helaili","download_url":"https://codeload.github.com/helaili/test-plan-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helaili%2Ftest-plan-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31819756,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"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":["actions","test"],"created_at":"2024-11-25T20:14:36.370Z","updated_at":"2026-04-14T23:33:12.576Z","avatar_url":"https://github.com/helaili.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# test-plan-action\nManage you test plans with an automated project board\n\nEverytime you need to go through a validation phase, all your test cases will be loaded as issues and added to a project board. You can then track progress by moving the issue through columns, assign them to testers and close them when the test case is validated. \n\n### Create tests\nEach test will be described in its own markdown file using the [Front Matter](https://jekyllrb.com/docs/front-matter/) syntax. Fields in the Front Matter section (between the `---`) are: \n\n- `title`: the title of the issue\n- `labels`: a comma separated list of labels that will be added to the issue\n- `assignees`: a comma separated list of handles of users who will be assigned this issue \n\nThe rest of the file will be the body of the issue. \n\n```markdown\n---\ntitle: \"Login\"\nlabels: manual test, needs triage\nassignees: helaili\n---\n\n**Describe the test**\nA clear and concise description of what the test is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Status of the test**\n- [ ] Reviewed\n- [ ] Approved\n\n```\n\n### Configure the test plan\n\nCreate a YAML config file with the following data: \n\n`name`: The name of the project board that will be created\n`folder`: Relative path from the root of the repository where the test files are located \n`columns`: List of the columns of the project board. Issues will be created in the first column \n\n```yaml\nname: Test Campaign\nfolder: test-cases\ncolumns:\n- New\n- Active\n- Resolved\n```\n\n#### Create a pipeline\n\nUse this action in a pipeline triggered by the event of your choice. Make sure you use the `actions/checkout` action in a previous step so that the test case files are available. \n\n```yaml\nname: Generate test plan\n\non:\n  workflow_dispatch\n\njobs:\n  generate-test-campaign:\n    runs-on: ubuntu-latest\n\n    steps:\n    - uses: actions/checkout@v2\n\n    - name: Generate Test Campaign\n      uses: ./\n      with:\n        token: ${{ secrets.GITHUB_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelaili%2Ftest-plan-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelaili%2Ftest-plan-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelaili%2Ftest-plan-action/lists"}