{"id":32120364,"url":"https://github.com/justinawrey/shipit","last_synced_at":"2026-05-14T13:39:02.718Z","repository":{"id":60879845,"uuid":"545719753","full_name":"justinawrey/shipit","owner":"justinawrey","description":"Easy Github releases for Deno.","archived":false,"fork":false,"pushed_at":"2022-10-10T01:51:33.000Z","size":16,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-20T19:41:14.458Z","etag":null,"topics":["deno","release","semantic-commits","semantic-release"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/justinawrey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-04T21:36:33.000Z","updated_at":"2024-11-16T22:10:30.000Z","dependencies_parsed_at":"2022-10-06T06:55:48.008Z","dependency_job_id":null,"html_url":"https://github.com/justinawrey/shipit","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/justinawrey/shipit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinawrey%2Fshipit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinawrey%2Fshipit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinawrey%2Fshipit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinawrey%2Fshipit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justinawrey","download_url":"https://codeload.github.com/justinawrey/shipit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinawrey%2Fshipit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33027402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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"}},"keywords":["deno","release","semantic-commits","semantic-release"],"created_at":"2025-10-20T19:41:30.358Z","updated_at":"2026-05-14T13:39:02.702Z","avatar_url":"https://github.com/justinawrey.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# shipit :canoe:\n\n[![deno module](https://shield.deno.dev/x/shipit)](https://deno.land/x/shipit)\n[![release](https://github.com/justinawrey/shipit/actions/workflows/release.yml/badge.svg)](https://github.com/justinawrey/shipit/actions/workflows/release.yml)\n\nLike [semantic-release](https://github.com/semantic-release/semantic-release),\nbut opinionated, fast, and built with Deno in mind.\n\n## How is this different?\n\nIts not, really. It's a different implementation of the same idea. However, some\ntweaks have been made to optimize for Deno:\n\n- Releases start at `0.1.0`. This is a common convention for Node projects, but\n  seems to be even more common for Deno projects.\n\n- No support for publishing to npm. Since [deno.land/x](https://deno.land/x)\n  syncs your code when you publish a Github release, publishing is all you need.\n\n- Documentation changes cause a minor version bump. Documentation is a feature,\n  especially since [deno doc](https://doc.deno.land) will scrape your code. This\n  decision is less of a Deno convention, and mostly my opinion.\n\n- The release workflow is opinionated, and as such runs _fast_ and has _zero\n  configuration_. `feat!:` will cause a major version bump, `feat:` or `docs:`\n  will cause a minor version bump, and `fix:` will cause a patch version bump.\n  Thats it!\n\n## Usage\n\nInstall `shipit` locally:\n\n```sh\ndeno install --allow-env --allow-run --allow-net https://deno.land/x/shipit/shipit.ts\n```\n\nAnd ship it!\n\n```sh\nshipit\n```\n\nIn order to be able to authenticate with Github, you must set an environment\nvariable called `GITHUB_TOKEN` to a\n[personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)\nwith `repo` permissions.\n\nIf you'd prefer to run `shipit` on CI, you can:\n\n```yaml\non:\n  push:\n    branches:\n      - main\n\n  release:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n        with:\n          fetch-depth: 0\n\n      - uses: denoland/setup-deno@v1\n        with:\n          deno-version: vx.x.x\n\n      # Use latest version of shipit.  You may prefer to pin a specific version.\n      - run: deno run --allow-net --allow-env --allow-run https://deno.land/x/shipit/shipit.ts\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n```\n\nBe sure to provide `GITHUB_TOKEN` as an environment variable to the `shipit`\nscript, as well as set `fetch-depth: 0` in the checkout step.\n\n## Granting permissions\n\n`shipit` requires environment, network, and subprocess creation permissions:\n\n- `--allow-env`: `shipit` reads `GITHUB_TOKEN` from your local environment in\n  order to authenticate with Github\n- `--allow-run`: `shipit` needs to spawn subprocesses (`git`, `bash`) in order\n  to gather information about your commits\n\n- `--allow-net`: `shipit` needs to make outbound networks requests to Github in\n  order to create Github releases\n\n## Examples\n\n`shipit` uses itself for releases. You can see the shape of the generated\nreleases [here](https://github.com/justinawrey/shipit/releases).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinawrey%2Fshipit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustinawrey%2Fshipit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinawrey%2Fshipit/lists"}