{"id":27863347,"url":"https://github.com/denosaurs/depsbot","last_synced_at":"2025-05-04T20:49:59.216Z","repository":{"id":37127637,"uuid":"291523601","full_name":"denosaurs/depsbot","owner":"denosaurs","description":"⚙️ GitHub action to check freshness of your deno dependencies","archived":false,"fork":false,"pushed_at":"2023-01-16T03:07:33.000Z","size":4088,"stargazers_count":29,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-04T20:49:46.940Z","etag":null,"topics":["action","best-practices","ci","deno","deps","javascript-action","typescript","workflow"],"latest_commit_sha":null,"homepage":"https://npm.im/depsbot","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/denosaurs.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}},"created_at":"2020-08-30T17:58:55.000Z","updated_at":"2025-02-20T15:01:44.000Z","dependencies_parsed_at":"2023-02-10T00:46:06.061Z","dependency_job_id":null,"html_url":"https://github.com/denosaurs/depsbot","commit_stats":{"total_commits":44,"total_committers":4,"mean_commits":11.0,"dds":0.5227272727272727,"last_synced_commit":"8735c0ab284c96b2f220709ccaa22a3aa7e70663"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fdepsbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fdepsbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fdepsbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fdepsbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/denosaurs","download_url":"https://codeload.github.com/denosaurs/depsbot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252399508,"owners_count":21741670,"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":["action","best-practices","ci","deno","deps","javascript-action","typescript","workflow"],"created_at":"2025-05-04T20:49:58.508Z","updated_at":"2025-05-04T20:49:59.211Z","avatar_url":"https://github.com/denosaurs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003e\u003ccode\u003edepsbot\u003c/code\u003e\u003c/h1\u003e\n  \u003cp\u003e\n    \u003cstrong\u003e⚙️ GitHub action to check freshness of your deno dependencies\u003c/strong\u003e\n  \u003c/p\u003e\n  \u003cbr\u003e\n  \u003cp align=\"center\"\u003e\n    \u003ca alt=\"Tags\" href=\"https://github.com/denosaurs/depsbot/releases\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/release/denosaurs/depsbot\" /\u003e\n    \u003c/a\u003e\n      \u003ca alt=\"CI Status\" href=\"https://github.com/denosaurs/depsbot/actions\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/workflow/status/denosaurs/depsbot/checks\" /\u003e\n    \u003c/a\u003e\n      \u003ca alt=\"License\" href=\"https://github.com/denosaurs/depsbot/blob/master/LICENSE\"\u003e\n      \u003cimg src=\"https://img.shields.io/github/license/denosaurs/depsbot\" /\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n## Usage as a GitHub action\n\n### Example Workflow file\n\nAn example workflow to authenticate with GitHub Platform:\n\n```yaml\non:\n  schedule:\n    - cron: \"0 0 * * *\" # run depsbot everyday at 00:00 UTC\n  push:\n  pull_request: # but also check on push and pull requests\n\njobs:\n  depsbot:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout Repository\n        uses: actions/checkout@master\n\n      - name: Run depsbot\n        uses: denosaurs/depsbot@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n### Inputs\n\n| name         | value  | default | description                                                                     |\n| ------------ | ------ | ------- | ------------------------------------------------------------------------------- |\n| github_token | string |         | Token for the repo. Can be passed in using `${{ secrets.GITHUB_TOKEN }}`.       |\n| path         | string | '.'     | If your deno project is in a subdirectory you specify where to run the depsbot. |\n| repo_path    | string | '.'     | Path to your repository in the filesystem.                                      |\n\n### Ignore Comments\n\nIf you to let depsbot know that a particular line or file shouldn't be checked you can add:\n\n- `// depsbot-ignore` to ignore the next line\n\n  ```typescript\n  // depsbot-ignore\n  import { red } from \"https://deno.land/std@0.51.0/fmt/colors.ts\";\n  ```\n\n- `// depsbot-ignore-file` to ignore the entire file\n\n  ```typescript\n  // depsbot-ignore-file\n  import { red } from \"https://deno.land/std@0.51.0/fmt/colors.ts\";\n  import { exists } from \"https://deno.land/std@0.51.0/fs/mod.ts\";\n  ```\n\n## Usage as a CLI\n\nTo use depsbot as a CLI you can install it with:\n\n```bash\n$ yarn global add depsbot\n```\n\nyou can also use it for a one time run with npx.\n\n## Maintainers\n\n- Filippo Rossi ([@qu4k](https://github.com/qu4k))\n\n## Other\n\n### Related\n\n- [dependabot](https://github.com/dependabot/dependabot-core) - Automated dependency updates built into GitHub\n\n### Contribution\n\nPull request, issues and feedback are very welcome. Code style is formatted with `yarn format` and commit messages are done following Conventional Commits spec.\n\n### Licence\n\nCopyright 2020-present, the denosaurs team. All rights reserved. MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenosaurs%2Fdepsbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdenosaurs%2Fdepsbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenosaurs%2Fdepsbot/lists"}