{"id":16398117,"url":"https://github.com/hebilicious/reproduire","last_synced_at":"2025-03-21T02:32:33.623Z","repository":{"id":185580427,"uuid":"673747499","full_name":"Hebilicious/reproduire","owner":"Hebilicious","description":"Github Action that comments on incomplete issues.","archived":false,"fork":false,"pushed_at":"2024-10-29T23:27:33.000Z","size":431,"stargazers_count":9,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-30T01:51:54.031Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/Hebilicious.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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},"funding":{"github":["Hebilicious"]}},"created_at":"2023-08-02T10:29:42.000Z","updated_at":"2024-10-29T23:26:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"c1d07bf2-5c4f-43c0-af1a-fcdcebbcb8f9","html_url":"https://github.com/Hebilicious/reproduire","commit_stats":null,"previous_names":["hebilicious/reproduire"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hebilicious%2Freproduire","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hebilicious%2Freproduire/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hebilicious%2Freproduire/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hebilicious%2Freproduire/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hebilicious","download_url":"https://codeload.github.com/Hebilicious/reproduire/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244725591,"owners_count":20499633,"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","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":"2024-10-11T05:11:53.630Z","updated_at":"2025-03-21T02:32:33.273Z","avatar_url":"https://github.com/Hebilicious.png","language":"JavaScript","funding_links":["https://github.com/sponsors/Hebilicious"],"categories":[],"sub_categories":[],"readme":"# Reproduire\n\nGitHub action that adds a custom message to incomplete issues.\nThis action is intended to be in repositories where contributors needs to submit issues with a reproduction.\nIt enables an automated message to be added to issues that are missing a reproduction, based on a defined label.\n\n## Add a message when an issue is flagged as incomplete\n\nSetup the Reproduire action with a workflow file in your repository (e.g. `.github/workflows/reproduire.yml`) :\n\n```yaml\nname: Reproduire\non:\n  issues:\n    types: [labeled]\n\npermissions:\n  issues: write\n\njobs:\n  reproduire:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: Hebilicious/reproduire@v1\n        with:\n          label: needs-reproduction # Optional, will default to this value.\n```\n\nYou can create a custom markdown message by creating a `.github/reproduire/needs-reproduction.md` in your repository.\n\n## Automatically close incomplete issues\n\nYou can use another action to automatically close labeled issues after a certain amount of time.\nSetup a [stale](https://github.com/actions/stale) action in your repository (e.g. `.github/workflows/reproduire-close.yml`) :\n\n```yaml\nname: Close incomplete issues\non:\n  workflow_dispatch:\n  schedule:\n    - cron: '30 1 * * *' # run every day\n\npermissions:\n  issues: write\n\njobs:\n  stale:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/stale@v8\n        with:\n          days-before-stale: -1 # Issues and PR will never be flagged stale automatically.\n          stale-issue-label: needs-reproduction # Label that flags an issue as stale.\n          only-labels: needs-reproduction # Only process these issues\n          days-before-issue-close: 7\n          ignore-updates: true\n          remove-stale-when-updated: false\n          close-issue-message: This issue was closed because it was open for 7 days without a valid reproduction.\n          close-issue-label: closed-by-reproduire\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhebilicious%2Freproduire","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhebilicious%2Freproduire","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhebilicious%2Freproduire/lists"}