{"id":48059616,"url":"https://github.com/actungs/yamllint-composite-action","last_synced_at":"2026-04-04T14:31:15.675Z","repository":{"id":134878660,"uuid":"612167426","full_name":"actungs/yamllint-composite-action","owner":"actungs","description":"A GitHub composite action to run yamllint.","archived":false,"fork":false,"pushed_at":"2025-11-20T19:02:15.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-28T09:39:27.376Z","etag":null,"topics":["composite-action","github-actions","linter","yaml","yamllint"],"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/actungs.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-10T10:47:06.000Z","updated_at":"2025-11-20T19:02:18.000Z","dependencies_parsed_at":"2025-08-13T06:15:59.566Z","dependency_job_id":"82459881-c467-4c5d-b636-d3e9d3ff26fe","html_url":"https://github.com/actungs/yamllint-composite-action","commit_stats":null,"previous_names":["actungs/yamllint-composite-action","beiertu-mms/yamllint-composite-action"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/actungs/yamllint-composite-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fyamllint-composite-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fyamllint-composite-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fyamllint-composite-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fyamllint-composite-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/actungs","download_url":"https://codeload.github.com/actungs/yamllint-composite-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actungs%2Fyamllint-composite-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31402656,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["composite-action","github-actions","linter","yaml","yamllint"],"created_at":"2026-04-04T14:31:15.548Z","updated_at":"2026-04-04T14:31:15.654Z","avatar_url":"https://github.com/actungs.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Yamllint Composite Action\n\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/actungs/yamllint-composite-action?style=flat-square)][releases]\n[![GitHub](https://img.shields.io/github/license/actungs/yamllint-composite-action?style=flat-square)](./LICENSE)\n\nA [GitHub composite action][gh-composite-action] to run [yamllint][yamllint], a linter for YAML files.\n\n[gh-composite-action]: https://docs.github.com/en/actions/creating-actions/creating-a-composite-action\n[yamllint]: https://yamllint.readthedocs.io/en/stable/index.html\n\n## Usage\n\nA simplified example on how this action can be utilized, could look like this.\n\n```yaml\non: [pull_request]\n\njobs:\n  lint_yaml:\n    runs-on: ubuntu-latest\n    name: Lint YAML files\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Lint YAML\n        id: yamllint\n        uses: actungs/yamllint-composite-action@v1\n\n      - name: Use linter output\n        if: always()\n        run: echo ${{ steps.yamllint.outputs.lint_output }}\n```\n\nSee this action [releases][releases] or [tags][tags] for all available versions.\n\n[releases]: https://github.com/actungs/yamllint-composite-action/releases\n[tags]: https://github.com/actungs/yamllint-composite-action/tags\n\n## Inputs\n\nThis action accepts the following inputs.\n\n| Name            | Description                                                                                 | Required |          Default          |\n|-----------------|---------------------------------------------------------------------------------------------|:--------:|:-------------------------:|\n| `files_or_dirs` | A space separated list of files or directories to be linted                                 |    no    | current working directory |\n| `config_file`   | Path to a custom configuration file                                                         |    no    |            \"\"             |\n| `config_data`   | Custom configuration (as YAML source)                                                       |    no    |            \"\"             |\n| `strict`        | Return non-zero exit code on warnings as well as errors                                     |    no    |           false           |\n| `no_warnings`   | Output only error level problems                                                            |    no    |           false           |\n| `format`        | The format for parsing output. Available options: parsable, standard, colored, github, auto |    no    |           auto            |\n\n## Outputs\n\nThis action returns the following outputs.\n\n| Name          | Description                |\n|---------------|----------------------------|\n| `lint_output` | Result from yamllint check |\n\n**Note**: When using the output in a follow up step(s),\none of these conditions `if: always()` or `if: success() || failure()` should be added,\nto prevent the step to be skipped when errors are found.\n\n## License\n\nDistributed under the MIT License. See [LICENSE](./LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factungs%2Fyamllint-composite-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factungs%2Fyamllint-composite-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factungs%2Fyamllint-composite-action/lists"}