{"id":30127638,"url":"https://github.com/moeki0/review-browserstack-screenshots","last_synced_at":"2026-05-14T23:36:57.488Z","repository":{"id":134211878,"uuid":"564730725","full_name":"moeki0/review-browserstack-screenshots","owner":"moeki0","description":"Review system on Github with BrowserStack screenshot","archived":false,"fork":false,"pushed_at":"2022-11-11T11:13:57.000Z","size":100,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-31T13:37:10.979Z","etag":null,"topics":["browserstack","github-actions"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/moeki0.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}},"created_at":"2022-11-11T11:12:53.000Z","updated_at":"2023-02-01T08:10:58.000Z","dependencies_parsed_at":"2023-10-04T09:07:44.823Z","dependency_job_id":null,"html_url":"https://github.com/moeki0/review-browserstack-screenshots","commit_stats":null,"previous_names":["kawakamimoeki/review-browserstack-screenshots","kawakamidev/review-browserstack-screenshots","moekiorg/review-browserstack-screenshots"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/moeki0/review-browserstack-screenshots","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Freview-browserstack-screenshots","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Freview-browserstack-screenshots/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Freview-browserstack-screenshots/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Freview-browserstack-screenshots/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moeki0","download_url":"https://codeload.github.com/moeki0/review-browserstack-screenshots/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moeki0%2Freview-browserstack-screenshots/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269756394,"owners_count":24470566,"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","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"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":["browserstack","github-actions"],"created_at":"2025-08-10T17:08:47.709Z","updated_at":"2026-05-14T23:36:52.454Z","avatar_url":"https://github.com/moeki0.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Review Browserstack Screenshots\n\n## Usage\n\n### Configuration\nConfigurations should be defined in `.screenshot/config.yaml` .\nThe following is a sample `.screenshot/config.yaml` .\n\n```yaml\nlocal: false # If true, take screenshots on http://localhost:8000.\ntable: false # The screenshot table in the comment.\nbrowsers:\n  - \n    os: OS X\n    os_version: Big Sur\n    browser: safari\n    browser_version: 14.1\n  -\n    os: OS X\n    os_version: Catalina\n    browser: safari\n    browser_version: 13.1\n# ...\n```\n\n#### Available browsers\n\nTo know about all the available combinations, hit the Browser API. \n\n```bash\ncurl -u \"\u003cusername\u003e:\u003caccess_key\u003e\" https://api.browserstack.com/automate/browsers.json\n```\n\n### Workflow\n\n#### Use external server\n\nThe following is a sample workflow.\n```yaml\nname: screenshot\non:\n  pull_request:\n    types:\n      - opened\n      - edited\n      - synchronize\njobs:\n  screenshot:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - uses: colorfulcompany/review-browserstack-screenshots@main\n        with:\n          pr_number: ${{ github.event.pull_request.number }}\n          commit_sha: ${{ github.event.pull_request.head.sha }}\n          repo_token: ${{ secrets.GITHUB_TOKEN }}\n          browserstack_username: ${{ secrets.BROWSERSTACK_USERNAME }}\n          browserstack_access_key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}\n```\n\n#### Use local server\n\nThe following is a sample workflow.\n```yaml\nname: screenshot\non:\n  pull_request:\n    types:\n      - opened\n      - edited\n      - synchronize\njobs:\n  screenshot:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: 2.7\n          bundler-cache: true\n      - uses: browserstack/github-actions/setup-env@master\n        with:\n          username:  ${{ secrets.BROWSERSTACK_USERNAME }}\n          access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}\n      - uses: browserstack/github-actions/setup-local@master\n        with:\n          local-testing: start\n      - run: bundle exec jekyll serve --port 8000 \u0026 # entrypoint\n      - uses: colorfulcompany/review-browserstack-screenshots@main\n        with:\n          pr_number: ${{ github.event.pull_request.number }}\n          commit_sha: ${{ github.event.pull_request.head.sha }}\n          repo_token: ${{ secrets.GITHUB_TOKEN }}\n          browserstack_username: ${{ secrets.BROWSERSTACK_USERNAME }}\n          browserstack_access_key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}\n      - uses: browserstack/github-actions/setup-local@master\n        with:\n          local-testing: stop\n```\n\n### Pull reqest keyword\nAdd a keyword like the following example to the PR description.\n\n```markdown\nscreenshot https://example.com\n```\n\nIf you want to take screenshots on local server, like this.\n\n```markdown\nscreenshot /about\n```\n\n### Automatic Comment\n![comment](https://github.com/cc-kawakami/review-browserstack-screenshots/blob/main/doc/comment.png)\n\n\n## License\nThe scripts and documentation in this project are released under the MIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoeki0%2Freview-browserstack-screenshots","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoeki0%2Freview-browserstack-screenshots","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoeki0%2Freview-browserstack-screenshots/lists"}