{"id":23940233,"url":"https://github.com/ecobee/repo-compare","last_synced_at":"2026-04-22T16:32:04.643Z","repository":{"id":42387650,"uuid":"281069806","full_name":"ecobee/repo-compare","owner":"ecobee","description":"A gihtub action to find every commit since the last release. With this information, it can then send a slack notification to remind users about unshipped code. ","archived":false,"fork":false,"pushed_at":"2023-04-21T02:20:23.000Z","size":465,"stargazers_count":0,"open_issues_count":18,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-15T17:16:00.544Z","etag":null,"topics":["github-actions","iris","springfield"],"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/ecobee.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}},"created_at":"2020-07-20T09:13:42.000Z","updated_at":"2020-10-02T13:49:50.000Z","dependencies_parsed_at":"2024-11-13T21:01:45.285Z","dependency_job_id":null,"html_url":"https://github.com/ecobee/repo-compare","commit_stats":{"total_commits":55,"total_committers":3,"mean_commits":"18.333333333333332","dds":0.509090909090909,"last_synced_commit":"50344b727443aec7df19b75e0661614ac7bcbf01"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ecobee/repo-compare","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecobee%2Frepo-compare","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecobee%2Frepo-compare/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecobee%2Frepo-compare/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecobee%2Frepo-compare/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ecobee","download_url":"https://codeload.github.com/ecobee/repo-compare/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ecobee%2Frepo-compare/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32145446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T15:33:03.595Z","status":"ssl_error","status_checked_at":"2026-04-22T15:30:42.712Z","response_time":58,"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":["github-actions","iris","springfield"],"created_at":"2025-01-06T03:13:03.206Z","updated_at":"2026-04-22T16:31:59.635Z","avatar_url":"https://github.com/ecobee.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/ecobee/repo-compare/actions\"\u003e\u003cimg alt=\"typescript-action status\" src=\"https://github.com/ecobee/repo-compare/workflows/build-test/badge.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# Repo Compare\n\nUse this action to compare what's at the HEAD of your default branch, compared to what was lasted included in last release\n\n# Usage\nCreate a new workflow in your repository with the following configuration\n\n```yaml\nname: 'Daily Release Workflow'\non:\n  schedule:\n    - cron:  '0 13 * * 1-5'\n\njobs:\n  build:\n    name: Stale Commits Notifier\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v1\n        with:\n          fetch-depth: 1\n      - uses: ecobee/repo-compare@master\n        with:\n            include-prerelease: false\n            default-branch: master\n            slack-username: shipit\n            slack-channel: '#springfield'\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}\n```\n\n\n## Development\n\nInstall the dependencies\n```bash\n$ npm install\n```\n\nBuild the typescript and package it for distribution\n```bash\n$ npm run build \u0026\u0026 npm run pack\n```\n\nRun the tests :heavy_check_mark:\n```bash\n$ npm test\n\n PASS  __tests__/main.test.ts\n  Run\n    ✓ calculates how many commits the repo is behind (38ms)\n    ✓ sets `unreleased-commit-count (33ms)\n    ✓ sets `unreleased-commit-messages (18ms)\n    ✓ sets `unreleased-diff-url (15ms)\n    ✓ sets `latest-release-date (16ms)\n...\n```\n\n## Publish to a distribution branch\n\nActions are run from GitHub repos so we will checkin the packed dist folder.\n\nThen run [ncc](https://github.com/zeit/ncc) and push the results:\n```bash\n$ npm run pack\n$ git add dist\n$ git commit -a -m \"prod dependencies\"\n$ git push origin releases/v1\n```\n\nThe action is now published! :rocket:\n\nSee the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)\n\n## Validate\n\nYou can now validate the action by referencing `./` in a workflow in your repo (see [test.yml](.github/workflows/test.yml))\n\n```yaml\nuses: ./\nwith:\n  milliseconds: 1000\n```\n\nSee the [actions tab](https://github.com/ecobee/repo-compare/actions) for runs of this action! :rocket:\n\n## Usage:\n\nAfter testing you can [create a v1 tag](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md) to reference the stable and latest V1 action","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fecobee%2Frepo-compare","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fecobee%2Frepo-compare","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fecobee%2Frepo-compare/lists"}