{"id":13534081,"url":"https://github.com/sobolevn/misspell-fixer-action","last_synced_at":"2025-04-07T12:07:22.473Z","repository":{"id":65155708,"uuid":"248604967","full_name":"sobolevn/misspell-fixer-action","owner":"sobolevn","description":"📝Automatically fixes typos and mistakes in your source code and docs!","archived":false,"fork":false,"pushed_at":"2024-02-12T16:47:11.000Z","size":22,"stargazers_count":151,"open_issues_count":3,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-04T09:13:04.185Z","etag":null,"topics":["github-action","github-action-localizstion","github-actions","localization","misspell","misspell-fixer"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/misspell-fixer-action","language":"Shell","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/sobolevn.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},"funding":{"open_collective":"wemake-python-styleguide","github":"wemake-services","custom":"https://boosty.to/sobolevn"}},"created_at":"2020-03-19T21:06:10.000Z","updated_at":"2025-01-21T16:19:12.000Z","dependencies_parsed_at":"2024-05-12T07:46:32.887Z","dependency_job_id":null,"html_url":"https://github.com/sobolevn/misspell-fixer-action","commit_stats":{"total_commits":16,"total_committers":5,"mean_commits":3.2,"dds":0.25,"last_synced_commit":"26173e641ba08255d0c9826b8a873f8b96f76932"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sobolevn%2Fmisspell-fixer-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sobolevn%2Fmisspell-fixer-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sobolevn%2Fmisspell-fixer-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sobolevn%2Fmisspell-fixer-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sobolevn","download_url":"https://codeload.github.com/sobolevn/misspell-fixer-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247648977,"owners_count":20972945,"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-action","github-action-localizstion","github-actions","localization","misspell","misspell-fixer"],"created_at":"2024-08-01T07:01:26.184Z","updated_at":"2025-04-07T12:07:22.434Z","avatar_url":"https://github.com/sobolevn.png","language":"Shell","funding_links":["https://opencollective.com/wemake-python-styleguide","https://github.com/sponsors/wemake-services","https://boosty.to/sobolevn"],"categories":["Community Resources","Shell","八、趣味与小众工具"],"sub_categories":["Localization","8. 环境配置"],"readme":"# misspell-fixer-action\n\n[![wemake.services](https://img.shields.io/badge/%20-wemake.services-green.svg?label=%20\u0026logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services)\n\n📝Automatically fixes typos and mistakes in your source code and docs!\n\nBased on awesome [misspell-fixer](https://github.com/vlajos/misspell-fixer) tool.\n\n\n## Usage\n\nWe had a typo in our `entrypoint.sh` file to show how this GitHub Action works.\nBy using a pipeline of three actions we are able to receive [PRs like this one](https://github.com/sobolevn/misspell-fixer-action/pull/3).\n\nHere's how our configuration looks like:\n\n```yml\n- uses: actions/checkout@v2\n- uses: sobolevn/misspell-fixer-action@master\n- uses: peter-evans/create-pull-request@v2.4.4\n  with:\n    token: ${{ secrets.GITHUB_TOKEN }}\n```\n\nHere's how it works:\n\n1. The first [`actions/checkout@v2`](https://github.com/actions/checkout) action checkouts our code from the repo\n2. Our own `sobolevn/misspell-fixer-action` finds misspells and fixes them\n3. Then [`peter-evans/create-pull-request`](https://github.com/peter-evans/create-pull-request) creates a PR with the fixes created earlier\n4. Done!\n\nHere's how our [workflow looks like](https://github.com/sobolevn/misspell-fixer-action/blob/master/.github/workflows/misspell.yml).\n\n\n## Options and outputs\n\nYou can pass any options that are supported by `misspell-fixer` tool,\nto do so you can use `options` key:\n\n```yml\n- uses: sobolevn/misspell-fixer-action@master\n  with:\n    options: '-rsvn src/'\n```\n\nYou can also use the output produced by this action by default.\nRead more about [outputs](https://help.github.com/en/actions/building-actions/metadata-syntax-for-github-actions#outputs).\n\n\n## License\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsobolevn%2Fmisspell-fixer-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsobolevn%2Fmisspell-fixer-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsobolevn%2Fmisspell-fixer-action/lists"}