{"id":20686653,"url":"https://github.com/ericcornelissen/codecov-config-validator-action","last_synced_at":"2025-05-10T17:30:37.516Z","repository":{"id":64209196,"uuid":"574104366","full_name":"ericcornelissen/codecov-config-validator-action","owner":"ericcornelissen","description":"Action for validating Codecov configuration files","archived":true,"fork":false,"pushed_at":"2024-10-11T15:00:09.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-10T22:59:51.224Z","etag":null,"topics":["actions","codecov"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericcornelissen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-04T12:51:49.000Z","updated_at":"2024-10-11T15:02:22.000Z","dependencies_parsed_at":"2023-02-17T15:46:21.377Z","dependency_job_id":"a5aa5e0c-4dec-4352-aab8-923792c5e742","html_url":"https://github.com/ericcornelissen/codecov-config-validator-action","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcornelissen%2Fcodecov-config-validator-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcornelissen%2Fcodecov-config-validator-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcornelissen%2Fcodecov-config-validator-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericcornelissen%2Fcodecov-config-validator-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericcornelissen","download_url":"https://codeload.github.com/ericcornelissen/codecov-config-validator-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253453154,"owners_count":21911049,"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":["actions","codecov"],"created_at":"2024-11-16T22:36:18.581Z","updated_at":"2025-05-10T17:30:37.226Z","avatar_url":"https://github.com/ericcornelissen.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- SPDX-License-Identifier: CC-BY-SA-4.0 --\u003e\n\n# Codecov Config Validator Action\n\nA GitHub action to validate [Codecov] configuration files.\n\n\u003e [!WARNING]\n\u003e Support for this Action ended 2024-10-11. We recommend finding an alternative\n\u003e and to not start nor continue using this Action.\n\n## Usage\n\n```yml\n- uses: actions/checkout@v4\n- uses: ericcornelissen/codecov-config-validator-action@v1\n  with:\n    # Provide a path to the location of the Codecov configuration file.\n    #\n    # Default: \".github/codecov.yml\"\n    # Required: false\n    file: path/to/codecov.yml\n```\n\n### Recommended Workflow\n\nThis workflow is recommended because it minimizes how often the Codecov config\nis validated.\n\n```yml\n# .github/workflows/config-codecov.yml\n\nname: Codecov Config\non:\n  pull_request:\n    paths:\n      - .github/workflows/config-codecov.yml\n      - .github/codecov.yml\n  push:\n    branches:\n      - main # default branch\n    paths:\n      - .github/workflows/config-codecov.yml\n      - .github/codecov.yml\n\npermissions: read-all\n\njobs:\n  validate:\n    name: Validate\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: ericcornelissen/codecov-config-validator-action@v1\n        with:\n          file: .github/codecov.yml\n```\n\n## Outputs\n\n_See the [steps context] documentation for how to use output values._\n\n- `status-code`: The HTTP status code returned by the Codecov API.\n\n## Runners\n\nThis action is tested on the official [`ubuntu-20.04`] and [`ubuntu-22.04`]\nrunner images. It is recommended to use one of these images when using this\naction.\n\n## Security\n\n### Permissions\n\nThis Action requires no [permissions].\n\n### Network\n\nThis Action requires network access to the endpoint `codecov.io:443`.\n\n## License\n\nAll source code is licensed under the Mozilla Public License 2.0 license, see\n[LICENSE] for the full license text. The contents of documentation is licensed\nunder [CC BY-SA 4.0].\n\n---\n\nPlease [open an issue] if you found a mistake or if you have a suggestion for\nhow to improve the documentation.\n\n[cc by-sa 4.0]: https://creativecommons.org/licenses/by-sa/4.0/\n[codecov]: https://codecov.io/\n[license]: ./LICENSE\n[open an issue]: https://github.com/ericcornelissen/codecov-config-validator-action/issues/new?labels=documentation\n[permissions]: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions\n[steps context]: https://docs.github.com/en/actions/learn-github-actions/contexts#steps-context\n[`ubuntu-20.04`]: https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2004-Readme.md\n[`ubuntu-22.04`]: https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericcornelissen%2Fcodecov-config-validator-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericcornelissen%2Fcodecov-config-validator-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericcornelissen%2Fcodecov-config-validator-action/lists"}