{"id":21158517,"url":"https://github.com/actioncloud/issue-tracker-action","last_synced_at":"2025-07-09T12:34:06.397Z","repository":{"id":40731419,"uuid":"224149709","full_name":"ActionCloud/issue-tracker-action","owner":"ActionCloud","description":"GitHub Issue Tracker Action.","archived":false,"fork":false,"pushed_at":"2024-11-01T01:51:21.000Z","size":411,"stargazers_count":5,"open_issues_count":3,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-01T02:30:21.247Z","etag":null,"topics":["github-actions","github-issues"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/ActionCloud.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-26T09:15:11.000Z","updated_at":"2024-11-01T01:51:24.000Z","dependencies_parsed_at":"2023-12-01T02:34:55.112Z","dependency_job_id":"bc96dc87-4cac-4731-8592-8c2ca5d5ed1b","html_url":"https://github.com/ActionCloud/issue-tracker-action","commit_stats":{"total_commits":47,"total_committers":2,"mean_commits":23.5,"dds":0.08510638297872342,"last_synced_commit":"af06f7713bed196924f5521cfebf555b9554f248"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActionCloud%2Fissue-tracker-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActionCloud%2Fissue-tracker-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActionCloud%2Fissue-tracker-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ActionCloud%2Fissue-tracker-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ActionCloud","download_url":"https://codeload.github.com/ActionCloud/issue-tracker-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225552438,"owners_count":17487289,"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","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","github-issues"],"created_at":"2024-11-20T12:25:51.464Z","updated_at":"2024-11-20T12:25:51.939Z","avatar_url":"https://github.com/ActionCloud.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Issue Tracker Action\n\n![](https://github.com/actioncloud/issue-tracker-action/workflows/Test%20tracker/badge.svg)\n\nThis is a GitHub Action which runs periodically (e.g. once an hour) and grabs the current data from the Github API and stores it in a file in the repository(in the `.github/actioncloud/issue-tracker/data.json`). The code is mainly from [vscode-issue-tracker](https://github.com/lannonbr/vscode-issue-tracker), and I make it a GitHub Action.\n\n## Usage\n\n```yaml\n# A workflow config example\nname: Test tracker\n\non:\n  # a cron schedule to run periodically\n  schedule:\n    - cron: '0 * * * *'\n\njobs:\n  test_issue_tracker:\n    runs-on: ubuntu-latest\n    name: A job to test issue tracker\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v3\n    - name: Track issues\n      id: tracking\n      uses: actioncloud/issue-tracker-action@master\n      with:\n        github-token: ${{ secrets.GITHUB_TOKEN }}\n    # you need git commit to push the issue data to the folder: .github/actioncloud\n    - name: Git commit\n      run: |\n        # git commit if there's any change\n        if test -n \"$(git status --porcelain 2\u003e/dev/null)\"; then\n            git config --global user.email \"idegorepl@gmail.com\"\n            git config --global user.name \"ActionCloud Bot\"\n            git add .\n            git commit -m \"Update forks data\"\n            git push\n        fi\n    # you can get badge code of ActionCloud viewer App, and click it to view your data\n    - name: Check output\n      run: echo '${{ steps.tracking.outputs.actioncloud-badge }}'\n```\n\n## GitHub Issue Tracker Viewer\n\nThe Action will store the issues data into your repository, and you need a web view page to see the chart. The viewer page is hosted in `actioncloud.github.io`, the url is `https://actioncloud.github.io/apps/github-issue-tracker?owner=\u003cyour_owner_name\u003e\u0026repo=\u003cyour_repo_name\u003e`.\n\nYou can put a badge in your README file:\n\n[![](https://img.shields.io/badge/ActionCloud%20App-Issue%20Tracker-blue)](https://actioncloud.github.io/apps/github-issue-tracker?owner=actioncloud\u0026repo=issue-tracker-action)\n\n```pre\n# remember to change the owner_name and repo_name to yours:\n\n[![](https://img.shields.io/badge/ActionCloud%20App-Issue%20Tracker-blue)](https://actioncloud.github.io/apps/github-issue-tracker?owner=\u003cowner_name\u003e\u0026repo=\u003crepo_name\u003e)\n```\n\n### Page preview\n\n![github issue tracker preview](https://raw.githubusercontent.com/actioncloud/actioncloud.github.io/master/apps/github-issue-tracker/images/issueTrackerPreview.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factioncloud%2Fissue-tracker-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factioncloud%2Fissue-tracker-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factioncloud%2Fissue-tracker-action/lists"}