{"id":11953860,"name":"determinatesystems/update-flake-lock","ecosystem":"actions","description":"Update your Nix flake.lock and send a PR","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/determinatesystems/update-flake-lock","keywords_array":["nix","nix-flake"],"namespace":"DeterminateSystems","versions_count":28,"first_release_published_at":"2021-10-18T19:54:45.000Z","latest_release_published_at":"2025-11-26T21:17:01.000Z","latest_release_number":"v28","last_synced_at":"2026-06-13T10:48:37.239Z","created_at":"2025-07-28T03:30:27.405Z","updated_at":"2026-06-13T10:48:37.239Z","registry_url":"https://github.com/determinatesystems/update-flake-lock","install_command":null,"documentation_url":null,"metadata":{"name":"Update Nix Flake Lock","description":"Update your Nix flake.lock and send a PR","inputs":{"inputs":{"description":"A space-separated list of inputs to update. Leave empty to update all inputs.","required":false,"default":""},"token":{"description":"GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)","required":false,"default":"${{ github.token }}"},"commit-msg":{"description":"The message provided with the commit","required":false,"default":"flake.lock: Update"},"base":{"description":"Sets the pull request base branch. Defaults to the branch checked out in the workflow.","required":false},"branch":{"description":"The branch of the PR to be created","required":false,"default":"update_flake_lock_action"},"path-to-flake-dir":{"description":"The path of the directory containing `flake.nix` file within your repository. Useful when `flake.nix` cannot reside at the root of your repository.","required":false},"pr-title":{"description":"The title of the PR to be created","required":false,"default":"flake.lock: Update"},"pr-body":{"description":"The body of the PR to be created","required":false,"default":"Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.\n\n```\n{{ env.GIT_COMMIT_MESSAGE }}\n```\n\n### Running GitHub Actions on this PR\n\nGitHub Actions will not run workflows on pull requests which are opened by a GitHub Action.\n\n**To run GitHub Actions workflows on this PR, close and re-open this pull request.**\n"},"pr-labels":{"description":"A comma or newline separated list of labels to set on the Pull Request to be created","required":false,"default":""},"pr-assignees":{"description":"A comma or newline separated list of assignees (GitHub usernames).","required":false,"default":""},"pr-reviewers":{"description":"A comma or newline separated list of reviewers (GitHub usernames) to request a review from.","required":false,"default":""},"git-author-name":{"description":"Author name used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]"},"git-author-email":{"description":"Author email used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]@users.noreply.github.com"},"git-committer-name":{"description":"Committer name used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]"},"git-committer-email":{"description":"Committer email used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]@users.noreply.github.com"},"sign-commits":{"description":"Set to true if the action should sign the commit with GPG","required":false,"default":"false"},"gpg-private-key":{"description":"GPG Private Key with which to sign the commits in the PR to be created","required":false,"default":""},"gpg-fingerprint":{"description":"Fingerprint of specific GPG subkey to use","required":false},"gpg-passphrase":{"description":"GPG Private Key Passphrase for the GPG Private Key with which to sign the commits in the PR to be created","required":false,"default":""},"nix-options":{"description":"A space-separated list of options to pass to the nix command","required":false,"default":""},"_internal-strict-mode":{"description":"Whether to fail when any errors are thrown. Used only to test the Action; do not set this in your own workflows.","required":false,"default":false}},"outputs":{"pull-request-number":{"description":"The number of the opened pull request","value":"${{ steps.create-pr.outputs.pull-request-number }}"},"pull-request-url":{"description":"The The URL of the opened pull request.","value":"${{ steps.create-pr.outputs.pull-request-url }}"},"pull-request-operation":{"description":"The pull request operation performed by the action, `created`, `updated` or `closed`.","value":"${{ steps.create-pr.outputs.pull-request-operation }}"}},"runs":{"using":"composite","steps":[{"name":"Import bot's GPG key for signing commits","if":"${{ inputs.sign-commits == 'true' }}","id":"import-gpg","uses":"crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec","with":{"gpg_private_key":"${{ inputs.gpg-private-key }}","fingerprint":"${{ inputs.gpg-fingerprint }}","passphrase":"${{ inputs.gpg-passphrase }}","git_config_global":true,"git_user_signingkey":true,"git_commit_gpgsign":true}},{"name":"Set environment variables (signed commits)","if":"${{ inputs.sign-commits == 'true' }}","shell":"bash","env":{"GIT_AUTHOR_NAME":"${{ steps.import-gpg.outputs.name }}","GIT_AUTHOR_EMAIL":"${{ steps.import-gpg.outputs.email }}","GIT_COMMITTER_NAME":"${{ steps.import-gpg.outputs.name }}","GIT_COMMITTER_EMAIL":"${{ steps.import-gpg.outputs.email }}","TARGETS":"${{ inputs.inputs }}"},"run":"echo \"GIT_AUTHOR_NAME=$GIT_AUTHOR_NAME\" \u003e\u003e $GITHUB_ENV\necho \"GIT_AUTHOR_EMAIL=\u003c$GIT_AUTHOR_EMAIL\u003e\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_NAME=$GIT_COMMITTER_NAME\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_EMAIL=\u003c$GIT_COMMITTER_EMAIL\u003e\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Set environment variables (unsigned commits)","if":"${{ inputs.sign-commits != 'true' }}","shell":"bash","run":"echo \"GIT_AUTHOR_NAME=${{ inputs.git-author-name }}\" \u003e\u003e $GITHUB_ENV\necho \"GIT_AUTHOR_EMAIL=\u003c${{ inputs.git-author-email }}\u003e\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_NAME=${{ inputs.git-committer-name }}\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_EMAIL=\u003c${{ inputs.git-committer-email }}\u003e\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Run update-flake-lock","shell":"bash","run":"node \"$GITHUB_ACTION_PATH/dist/index.js\"","env":{"INPUT_BASE":"${{ inputs.base }}","INPUT_BRANCH":"${{ inputs.branch }}","INPUT_COMMIT-MSG":"${{ inputs.commit-msg }}","INPUT_GIT-AUTHOR-EMAIL":"${{ inputs.git-author-email }}","INPUT_GIT-AUTHOR-NAME":"${{ inputs.git-author-name }}","INPUT_GIT-COMMITTER-EMAIL":"${{ inputs.git-committer-email }}","INPUT_GIT-COMMITTER-NAME":"${{ inputs.git-committer-name }}","INPUT_GPG-FINGERPRINT":"${{ inputs.gpg-fingerprint }}","INPUT_GPG-PASSPHRASE":"${{ inputs.gpg-passphrase }}","INPUT_GPG-PRIVATE-KEY":"${{ inputs.gpg-private-key }}","INPUT_INPUTS":"${{ inputs.inputs }}","INPUT_NIX-OPTIONS":"${{ inputs.nix-options }}","INPUT_PATH-TO-FLAKE-DIR":"${{ inputs.path-to-flake-dir }}","INPUT_PR-ASSIGNEES":"${{ inputs.pr-assignees }}","INPUT_PR-BODY":"${{ inputs.pr-body }}","INPUT_PR-LABELS":"${{ inputs.pr-labels }}","INPUT_PR-REVIEWERS":"${{ inputs.pr-reviewers }}","INPUT_PR-TITLE":"${{ inputs.pr-title }}","INPUT_PULL-REQUEST-NUMBER":"${{ inputs.pull-request-number }}","INPUT_PULL-REQUEST-OPERATION":"${{ inputs.pull-request-operation }}","INPUT_SIGN-COMMITS":"${{ inputs.sign-commits }}","INPUT_TOKEN":"${{ inputs.token }}","INPUT__INTERNAL-STRICT-MODE":"${{ inputs._internal-strict-mode }}"}},{"name":"Save PR Body as file","uses":"DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42","with":{"path":"pr_body.template","contents":"${{ inputs.pr-body }}"},"env":{}},{"name":"Set additional env variables (GIT_COMMIT_MESSAGE)","shell":"bash","run":"DELIMITER=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)\nCOMMIT_MESSAGE=\"$(git log --format=%b -n 1)\"\necho \"GIT_COMMIT_MESSAGE\u003c\u003c$DELIMITER\" \u003e\u003e $GITHUB_ENV\necho \"$COMMIT_MESSAGE\" \u003e\u003e $GITHUB_ENV\necho \"$DELIMITER\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMIT_MESSAGE is: ${COMMIT_MESSAGE}\"\n"},{"name":"Interpolate PR Body","uses":"pedrolamas/handlebars-action@2995d7eadacbc8f2f6ab8431a01d84a5fa3b8bb4","with":{"files":"pr_body.template","output-filename":"pr_body.txt"}},{"name":"Read pr_body.txt","id":"pr_body","uses":"juliangruber/read-file-action@b549046febe0fe86f8cb4f93c24e284433f9ab58","with":{"path":"pr_body.txt"}},{"name":"Remove PR body template files","shell":"bash","run":"rm -f pr_body.txt pr_body.template"},{"name":"Create PR","id":"create-pr","uses":"peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412","with":{"base":"${{ inputs.base }}","branch":"${{ inputs.branch }}","delete-branch":true,"committer":"${{ env.GIT_COMMITTER_NAME }} ${{ env.GIT_COMMITTER_EMAIL }}","author":"${{ env.GIT_AUTHOR_NAME }} ${{ env.GIT_AUTHOR_EMAIL }}","title":"${{ inputs.pr-title }}","token":"${{ inputs.token }}","assignees":"${{ inputs.pr-assignees }}","labels":"${{ inputs.pr-labels }}","reviewers":"${{ inputs.pr-reviewers }}","body":"${{ steps.pr_body.outputs.content }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":37022825,"uuid":"418625766","full_name":"DeterminateSystems/update-flake-lock","owner":"DeterminateSystems","description":"Automatically refresh your Nix Flakes.","archived":false,"fork":false,"pushed_at":"2025-12-14T00:01:36.000Z","size":4049,"stargazers_count":359,"open_issues_count":34,"forks_count":41,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-12-15T20:21:22.634Z","etag":null,"topics":["nix","nix-flake"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/DeterminateSystems.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":"2021-10-18T18:39:57.000Z","updated_at":"2025-12-14T07:31:28.000Z","dependencies_parsed_at":"2022-07-11T15:22:20.848Z","dependency_job_id":"1c0c46c6-eb77-4b94-9197-024bbb53b7d2","html_url":"https://github.com/DeterminateSystems/update-flake-lock","commit_stats":{"total_commits":126,"total_committers":24,"mean_commits":5.25,"dds":0.7619047619047619,"last_synced_commit":"965531f33224d3e24e8168f9b35da1d9d6ad042c"},"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeterminateSystems","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/sbom","scorecard":{"id":39632,"data":{"date":"2025-08-11","repo":{"name":"github.com/DeterminateSystems/update-flake-lock","commit":"d6b471071f1d497ac41ef90623a618ba811bc98c"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.8,"checks":[{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Code-Review","score":10,"reason":"all changesets reviewed","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":10,"reason":"30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Info: jobLevel 'contents' permission set to 'read': .github/workflows/ci.yml:13","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/update.yml:11","Warn: no topLevel permission defined: .github/workflows/ci.yml:1","Warn: no topLevel permission defined: .github/workflows/update.yml:1","Warn: no topLevel permission defined: .github/workflows/validate.yml:1"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/update.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/update.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/update.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/update.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/validate.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/validate.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/validate.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/validate.yml/main?enable=pin","Info:   0 out of   3 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   6 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":5,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Info: 'branch protection settings apply to administrators' is required to merge on branch 'main'","Warn: 'stale review dismissal' is disabled on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Warn: codeowners review is not required on branch 'main'","Warn: 'last push approval' is disabled on branch 'main'","Info: status check found to merge onto on branch 'main'","Info: PRs are required in order to make changes on branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 30 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}}]},"last_synced_at":"2025-08-14T21:10:31.066Z","repository_id":37022825,"created_at":"2025-08-14T21:10:31.066Z","updated_at":"2025-08-14T21:10:31.066Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28113138,"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-12-29T02:00:07.021Z","response_time":58,"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"},"tags":[]},"repo_metadata_updated_at":"2025-12-29T09:52:18.691Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":29.487019470793808,"dependent_packages_count":0.0,"stargazers_count":null,"forks_count":null,"docker_downloads_count":null,"average":14.743509735396904},"purl":"pkg:githubactions/determinatesystems/update-flake-lock","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/determinatesystems/update-flake-lock","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/determinatesystems/update-flake-lock","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/determinatesystems/update-flake-lock/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-10-04T07:13:57.907Z","issues_count":51,"pull_requests_count":237,"avg_time_to_close_issue":1468660.5,"avg_time_to_close_pull_request":2789705.8834951455,"issues_closed_count":28,"pull_requests_closed_count":206,"pull_request_authors_count":28,"issue_authors_count":40,"avg_comments_per_issue":1.843137254901961,"avg_comments_per_pull_request":0.25316455696202533,"merged_pull_requests_count":167,"bot_issues_count":0,"bot_pull_requests_count":67,"past_year_issues_count":9,"past_year_pull_requests_count":115,"past_year_avg_time_to_close_issue":837.0,"past_year_avg_time_to_close_pull_request":636701.1612903225,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":93,"past_year_pull_request_authors_count":7,"past_year_issue_authors_count":9,"past_year_avg_comments_per_issue":0.2222222222222222,"past_year_avg_comments_per_pull_request":0.034782608695652174,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":30,"past_year_merged_pull_requests_count":79,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/issues","maintainers":[{"login":"grahamc","count":24,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/grahamc"},{"login":"cole-h","count":24,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cole-h"},{"login":"lucperkins","count":18,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lucperkins"},{"login":"colemickens","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/colemickens"},{"login":"flexiondotorg","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/flexiondotorg"}],"active_maintainers":[{"login":"grahamc","count":14,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/grahamc"},{"login":"lucperkins","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lucperkins"},{"login":"colemickens","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/colemickens"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/determinatesystems%2Fupdate-flake-lock/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/determinatesystems%2Fupdate-flake-lock/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/determinatesystems%2Fupdate-flake-lock/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/determinatesystems%2Fupdate-flake-lock/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/determinatesystems%2Fupdate-flake-lock/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/determinatesystems%2Fupdate-flake-lock/codemeta","maintainers":[]}