{"id":19987534,"url":"https://github.com/douglasneuroinformatics/semantic-release","last_synced_at":"2026-02-11T06:33:05.060Z","repository":{"id":249452675,"uuid":"831027482","full_name":"DouglasNeuroInformatics/semantic-release","owner":"DouglasNeuroInformatics","description":"Semantic release configuration and workflows for DNP projects","archived":false,"fork":false,"pushed_at":"2025-02-15T17:43:12.000Z","size":386,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-24T06:58:38.532Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DouglasNeuroInformatics.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,"zenodo":null}},"created_at":"2024-07-19T13:47:16.000Z","updated_at":"2025-02-15T17:43:15.000Z","dependencies_parsed_at":"2025-06-12T06:36:19.889Z","dependency_job_id":null,"html_url":"https://github.com/DouglasNeuroInformatics/semantic-release","commit_stats":null,"previous_names":["douglasneuroinformatics/semantic-release"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/DouglasNeuroInformatics/semantic-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fsemantic-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fsemantic-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fsemantic-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fsemantic-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DouglasNeuroInformatics","download_url":"https://codeload.github.com/DouglasNeuroInformatics/semantic-release/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fsemantic-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29328261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T06:13:03.264Z","status":"ssl_error","status_checked_at":"2026-02-11T06:12:55.843Z","response_time":97,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-13T04:36:59.689Z","updated_at":"2026-02-11T06:33:05.033Z","avatar_url":"https://github.com/DouglasNeuroInformatics.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- PROJECT LOGO --\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/DouglasNeuroInformatics/semantic-release\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/DouglasNeuroInformatics/semantic-release/main/.github/assets/dnp-utility-logo.png\" alt=\"Logo\" width=\"100\" \u003e\n  \u003c/a\u003e\n  \u003ch3 align=\"center\"\u003e@douglasneuroinformatics/semantic-release\u003c/h3\u003e\n  \u003cp align=\"center\"\u003e\n    Semantic release configuration and workflows for DNP projects \n  \u003c/p\u003e\n\u003c/div\u003e\n\n\u003c!-- PROJECT SHIELDS --\u003e\n\u003cdiv align=\"center\"\u003e\n\n![license](https://img.shields.io/github/license/DouglasNeuroInformatics/semantic-release)\n![version](https://img.shields.io/github/package-json/v/DouglasNeuroInformatics/semantic-release)\n\n\u003c/div\u003e\n\u003chr /\u003e\n\n## About\n\nThis is a convenience wrapper around [semantic-release](https://github.com/semantic-release/semantic-release) designed to be used with GitHub Actions. It uses [conventional commit messages](https://www.conventionalcommits.org/en/v1.0.0/) to generate release notes and a changelog. When a release is necessary, it is automatically published to npm, pushing the newly created tag, revised package.json and updated changelog to GitHub.\n\n## Installation\n\n```sh\npnpm add -D @douglasneuroinformatics/semantic-release husky\n```\n\n\u003e Note: Husky is an optional peer dependency, and could be replaced with any other toolchain that ensures that conventional commits are followed.\n\n## Configuration\n\nFirst, setup Husky (if applicable):\n\n```sh\npnpm exec husky init\n```\n\nThen, add the following git hook:\n\n**`.husky/commit-msg`**\n\n```sh\n#!/bin/sh\n\npnpm exec commitlint --edit $1\n```\n\nNow, add the following configuration:\n\n**`package.json`**\n\n```json\n{\n  \"commitlint\": {\n    \"extends\": [\"@douglasneuroinformatics/semantic-release/commitlint-config\"]\n  },\n  \"release\": {\n    \"extends\": [\"@douglasneuroinformatics/semantic-release\"]\n  }\n}\n```\n\nNext, generate an access token for [npm](https://www.npmjs.com/) with read and write permissions for the package in question and set the `NPM_TOKEN` secret for the repository.\n\nThen, add the following workflow:\n\n**`.github/workflows/release.yaml`**\n\n```yaml\nname: Release\non:\n  push:\n    branches: ['main']\n  workflow_dispatch:\npermissions:\n  contents: read\njobs:\n  release:\n    permissions:\n      contents: write\n      issues: write\n      pull-requests: write\n      id-token: write\n    uses: DouglasNeuroinformatics/semantic-release/.github/workflows/release.yaml@main\n    secrets:\n      NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n    with:\n      build-command: pnpm build # optional\n      lint-command: pnpm lint # optional\n      test-command: pnpm test # optional\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdouglasneuroinformatics%2Fsemantic-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdouglasneuroinformatics%2Fsemantic-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdouglasneuroinformatics%2Fsemantic-release/lists"}