{"id":46905600,"url":"https://github.com/connected-web/connected-web","last_synced_at":"2026-03-11T01:10:03.402Z","repository":{"id":34305334,"uuid":"38218035","full_name":"connected-web/connected-web","owner":"connected-web","description":"Artwork for the Connected Web website, including images and profile materials.","archived":false,"fork":false,"pushed_at":"2026-03-07T15:43:01.000Z","size":612,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-07T17:59:05.847Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://connected-web.net","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"jgthms/bulma","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/connected-web.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":"2015-06-28T23:24:50.000Z","updated_at":"2026-03-07T15:44:25.000Z","dependencies_parsed_at":"2022-09-22T04:51:39.393Z","dependency_job_id":null,"html_url":"https://github.com/connected-web/connected-web","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/connected-web/connected-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connected-web%2Fconnected-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connected-web%2Fconnected-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connected-web%2Fconnected-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connected-web%2Fconnected-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/connected-web","download_url":"https://codeload.github.com/connected-web/connected-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/connected-web%2Fconnected-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30365044,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"ssl_error","status_checked_at":"2026-03-10T21:40:59.357Z","response_time":106,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2026-03-11T01:10:02.705Z","updated_at":"2026-03-11T01:10:03.340Z","avatar_url":"https://github.com/connected-web.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Connected Web Artwork\n\nArtwork for the Connected Web website, including images and profile materials.\n\n## Logos\n\n\u003cimg src=\"https://raw.githubusercontent.com/connected-web/connected-web/main/site/images/connected-web-gradient-large.png\" alt=\"Connected Web Logo Gradient Large\" width=\"30%\" /\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/connected-web/connected-web/main/site/images/connected-web-flat-large.png\" alt=\"Connected Web Logo Flat Large\" width=\"30%\" /\u003e\n\n## Packages\n\nThis repository now publishes `@connected-web/assets` to GitHub Packages for reuse in Connected Web tools.\n\n## Release Runbook\n\nUse this process for `@connected-web/assets` releases.\n\n### Important\n\n- Preferred path: create a GitHub Release tag (`vX.Y.Z`) and let `Publish Packages Release` publish the npm package.\n- Do not manually rerun the release publish job for the same version after the GitHub Release is published, or npm publish will fail because the version already exists.\n\n### 1) Merge to `main`\n\n- Ensure PR checks are green.\n- Merge the PR to `main`.\n\n### 2) Review changes since the previous release\n\nFor the first release there will be no previous tag. For later releases:\n\n```bash\nPREV_TAG=$(gh release list --limit 1 --json tagName --jq '.[0].tagName')\necho \"Previous release: ${PREV_TAG}\"\ngh release view \"${PREV_TAG}\" --json publishedAt\n```\n\nReview merged PRs and commits that will ship:\n\n```bash\ngh pr list --state merged --base main --limit 20\ngit log --oneline --decorate -20\n```\n\n### 3) Prepare release notes in a file\n\nUse a file so release notes render cleanly.\n\nExample:\n\n```bash\ncat \u003e /tmp/release-notes-v0.1.0.md \u003c\u003c'EOF_NOTES'\nPublished packages:\n- @connected-web/assets@0.1.0\n\nHighlights:\n- Add publishable Connected Web asset package for GitHub Packages\n- Generate `32`, `64`, `128`, `256`, `512`, and `large` logo variants\n- Add PR and release workflows plus consumer smoke-test harness\nEOF_NOTES\n```\n\n### 4) Create the GitHub Release\n\n```bash\ngh release create v0.1.0 \\\n  --target main \\\n  --title \"v0.1.0\" \\\n  --notes-file /tmp/release-notes-v0.1.0.md\n```\n\nThis triggers `.github/workflows/publish-packages-release.yml`.\n\n### 5) Monitor the publish workflow\n\n```bash\ngh run list --workflow publish-packages-release.yml --limit 1\ngh run watch \u003crun-id\u003e\n```\n\n### 6) Verify the published package\n\n```bash\nnpm view @connected-web/assets@0.1.0 version --registry=https://npm.pkg.github.com\n```\n\n### 7) Smoke-test the published package locally\n\n```bash\nsource ~/.nvm/nvm.sh\nexport DEV_VERSION=0.1.0\nexport CONNECTED_WEB_PACKAGES_TOKEN=\u003cgithub-packages-token\u003e\n./scripts/assets/run-consumer-smoke.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnected-web%2Fconnected-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconnected-web%2Fconnected-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnected-web%2Fconnected-web/lists"}