{"id":16752964,"url":"https://github.com/amtoine/nu-issue-tracker","last_synced_at":"2026-01-02T09:37:36.731Z","repository":{"id":155709824,"uuid":"627532975","full_name":"amtoine/nu-issue-tracker","owner":"amtoine","description":"A nushell tool to keep track of the issue tracker over time.","archived":false,"fork":false,"pushed_at":"2024-04-13T00:53:12.000Z","size":5970,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-14T00:39:03.668Z","etag":null,"topics":["issue-tracker","nushell","scripting","time-series"],"latest_commit_sha":null,"homepage":"","language":"Nushell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amtoine.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}},"created_at":"2023-04-13T17:00:39.000Z","updated_at":"2024-04-15T05:13:23.483Z","dependencies_parsed_at":"2023-09-24T04:05:33.587Z","dependency_job_id":"335012e8-c8f5-4d78-b806-1a99e27f0b7c","html_url":"https://github.com/amtoine/nu-issue-tracker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amtoine%2Fnu-issue-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amtoine%2Fnu-issue-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amtoine%2Fnu-issue-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amtoine%2Fnu-issue-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amtoine","download_url":"https://codeload.github.com/amtoine/nu-issue-tracker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243828001,"owners_count":20354420,"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":["issue-tracker","nushell","scripting","time-series"],"created_at":"2024-10-13T02:48:47.298Z","updated_at":"2026-01-02T09:37:36.691Z","avatar_url":"https://github.com/amtoine.png","language":"Nushell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nu-issue-tracker\nA nushell tool to keep track of the issue tracker over time.\n\n## get the previous history of repositories\nif you want to keep track of the issue tracker from the beginning of the\nhistory of a project, but do not have all the issue counts over time, you\ncan follow the procedure below:\n```nushell\nuse mod.nu *\n\n# pull the main `nushell` repos\n[\n    \"nushell/nushell\"\n    \"nushell/nu-ansi-term\"\n    \"nushell/nu_scripts\"\n    \"nushell/nushell.github.io\"\n    \"nushell/reedline\"\n] | each {|repo| get issues $repo --from 1}\n\n# `nushell/nushell` has so many pages, we can only pull the first 59 at once :eyes:\nget issues \"nushell/nushell\" --from 60  # some time later\n\n# gather the issues together in a single NUON file per repository\nls nushell/ | get name | each {|repo|\n    gather issues $repo | select number created_at closed_at | save ({\n        parent: $repo\n        stem: \"issues\"\n        extension: \"nuon\"\n    } | path join)\n}\n\n# save the full history files\nfor repo in (ls nushell/ | get name) {\n    print $\"(ansi erase_line)building history of ($repo)\"\n\n    {\n        parent: $repo\n        stem: \"issues\"\n        extension: \"nuon\"\n    } | path join\n    | open\n    | build history\n    | save ({\n        parent: $repo\n        stem: \"history\"\n        extension: \"nuon\"\n    } | path join)\n}\n```\n\n## update the repo\n### update the issue trackers\nuse the `update-issue-trackers.nu` script.\n\n### generate the figures\nuse the `generate-figures.nu` script and then something like `feh **/history.png`.\n\n### automatic updates\n`github-actions` updates the repo automatically every day at midnight, see the\n[`update` CI pipeline](.github/workflows/update.yml).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famtoine%2Fnu-issue-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famtoine%2Fnu-issue-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famtoine%2Fnu-issue-tracker/lists"}