{"id":15286364,"url":"https://github.com/gtkacz/vulture-action","last_synced_at":"2026-02-17T13:30:57.277Z","repository":{"id":256646711,"uuid":"856007077","full_name":"gtkacz/vulture-action","owner":"gtkacz","description":"A GitHub action for Vulture.","archived":false,"fork":false,"pushed_at":"2025-02-25T17:08:27.000Z","size":27,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T18:23:03.232Z","etag":null,"topics":["code-analysis","code-analysis-true","code-quality","dead-code","github-actions","pip","python"],"latest_commit_sha":null,"homepage":"","language":null,"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/gtkacz.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":"2024-09-11T20:30:01.000Z","updated_at":"2025-02-25T17:08:30.000Z","dependencies_parsed_at":"2024-10-23T13:57:05.949Z","dependency_job_id":null,"html_url":"https://github.com/gtkacz/vulture-action","commit_stats":null,"previous_names":["gtkacz/vulture-action"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkacz%2Fvulture-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkacz%2Fvulture-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkacz%2Fvulture-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkacz%2Fvulture-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gtkacz","download_url":"https://codeload.github.com/gtkacz/vulture-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247585447,"owners_count":20962349,"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":["code-analysis","code-analysis-true","code-quality","dead-code","github-actions","pip","python"],"created_at":"2024-09-30T15:13:30.241Z","updated_at":"2026-02-17T13:30:56.686Z","avatar_url":"https://github.com/gtkacz.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vulture Dead Code Scanner GitHub Action\n\nThis GitHub Action runs [Vulture](https://github.com/jendrikseipp/vulture), a tool for detecting unused Python code, on your repository. It helps you identify and eliminate dead code, improving your project's maintainability and reducing its complexity.\n\n## Features\n\n- Easy integration with GitHub workflows.\n- Flexible configuration using Vulture's CLI arguments.\n- Supports all Vulture options and features.\n- Customizable for different project structures and requirements.\n\n## Usage\n\nTo use this action in your workflow, include the `gtkacz/vulture-action` action on one of your GitHub workflow yml files. The file may look like the following:\n\n```yaml\nname: Vulture Dead Code Check\n\non: [push, pull_request]\n\njobs:\n  vulture:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - name: Run Vulture\n      uses: gtkacz/vulture-action@v1.0.0\n      with:\n        args: '. --min-confidence 70 --exclude \"tests,docs\" --verbose'\n```\n\n## Inputs\n\nThis action accepts three inputs:\n\n- `src`: Source to run vulture. Default: `.`.\n- `args`: Arguments passed to Vulture. Use `vulture --help` to see available options or refer to the [Vulture documentation](https://github.com/jendrikseipp/vulture#usage).\n- `version`: The version of Vulture to use, e.g. `==2.11.0`. Default is null.\n\n## Examples\n\n### Basic Usage\n\nScan the entire repository with default settings:\n\n```yaml\n- name: Run Vulture\n  uses: gtkacz/vulture-action@v1.0.0\n```\n\n### Custom Configuration\n\nScan with a minimum confidence of 80%, excluding specific directories, and using verbose output:\n\n```yaml\n- name: Run Vulture\n  uses: gtkacz/vulture-action@v1.0.0\n  with:\n    args: '--min-confidence 80 --exclude \"tests,docs,build\" --verbose'\n```\n\n### Scanning Specific Files or Directories\n\nScan only the `src` directory:\n\n```yaml\n- name: Run Vulture\n  uses: gtkacz/vulture-action@v1.0.0\n  with:\n    src: 'package'\n```\n\n## Contributing\n\nContributions to improve this GitHub Action are welcome! Please feel free to submit issues or pull requests.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgements\n\n- This action uses [Vulture](https://github.com/jendrikseipp/vulture), created by Jendrik Seipp.\n- Thanks to the GitHub Actions team for providing the platform and documentation.\n\n## Support\n\nIf you encounter any problems or have any questions, please open an issue in this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtkacz%2Fvulture-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgtkacz%2Fvulture-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtkacz%2Fvulture-action/lists"}