{"id":44424501,"url":"https://github.com/codebeltnet/sonarcloud-scan","last_synced_at":"2026-02-12T10:20:50.870Z","repository":{"id":231597333,"uuid":"782168481","full_name":"codebeltnet/sonarcloud-scan","owner":"codebeltnet","description":"An opinionated GitHub Action for initializing SonarCloud as part of your CI flow.","archived":false,"fork":false,"pushed_at":"2025-07-07T18:40:25.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-07T22:38:40.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/codebeltnet.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,"zenodo":null}},"created_at":"2024-04-04T19:11:44.000Z","updated_at":"2025-07-07T18:39:57.000Z","dependencies_parsed_at":"2024-04-04T20:34:49.752Z","dependency_job_id":"5bb3cf6f-1ede-4be3-8c62-ab490b047110","html_url":"https://github.com/codebeltnet/sonarcloud-scan","commit_stats":null,"previous_names":["codebeltnet/sonarcloud-scan"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/codebeltnet/sonarcloud-scan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fsonarcloud-scan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fsonarcloud-scan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fsonarcloud-scan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fsonarcloud-scan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codebeltnet","download_url":"https://codeload.github.com/codebeltnet/sonarcloud-scan/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codebeltnet%2Fsonarcloud-scan/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29363053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"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":[],"created_at":"2026-02-12T10:20:47.931Z","updated_at":"2026-02-12T10:20:50.861Z","avatar_url":"https://github.com/codebeltnet.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Analyze with SonarCloud\n\nUses the [SonarScanner for .NET tool](https://www.nuget.org/packages/dotnet-sonarscanner) to hook into the build pipeline, downloads SonarCloud quality profiles and settings, and prepares your project for analysis.\n\n\u003e This action is part of the Codebelt umbrella and ensures a consistent way of: \n\u003e \n\u003e - Defining your CI/CD pipeline \n\u003e - Structuring your repository\n\u003e - Keeping your codebase small and feasible\n\u003e - Writing clean and maintainable code\n\u003e - Deploying your code to different environments\n\u003e - Automating as much as possible\n\u003e\n\u003e A paved path to excel as a DevSecOps Engineer.\n\n## Usage\n\nTo use this action in your GitHub repository, you can follow these steps:\n\n```yaml\nuses: codebeltnet/sonarcloud-scan@v1\n```\n\n### Inputs\n\n```yaml\nwith:\n  # The SonarCloud generated token.\n  token:\n  # The key of your project in SonarCloud.\n  projectKey:\n  # The name of your organization in SonarCloud.\n  organization:\n  # The version of your project, e.g. 1.0.0.\n  version:\n  # The host URL of your SonarCloud instance.\n  host: 'https://sonarcloud.io'\n  # Additional properties to be passed to the scanner.\n  parameters: \u003e-\n    -d:sonar.exclusions='**/obj/**,**/bin/**'\n```\n\n### Outputs\n\nThis action has no outputs.\n\n## Examples\n\n### Prepare SonarCloud\n\n```yaml\nsteps:\n  - name: Run SonarCloud Analysis\n    uses: codebeltnet/sonarcloud-scan@v1\n    with:\n      token: ${{ secrets.SONAR_TOKEN }}\n      organization: geekle\n      projectKey: savvyio\n      version: ${{ needs.build.outputs.version }}\n```\n\n## Caller workflows to showcase the Codebelt experience\n\n### Basic CI/CD Pipeline\n\n- Bootstrapper API - https://github.com/codebeltnet/bootstrapper/blob/main/.github/workflows/pipelines.yml\n- Extensions for Asp.Versioning API - https://github.com/codebeltnet/asp-versioning/blob/main/.github/workflows/pipelines.yml\n- Extensions for AWS Signature Version 4 API - https://github.com/codebeltnet/aws-signature-v4/blob/main/.github/workflows/pipelines.yml\n- Extensions for Globalization API - https://github.com/codebeltnet/globalization/blob/main/.github/workflows/pipelines.yml\n- Extensions for Newtonsoft.Json API - https://github.com/codebeltnet/newtonsoft-json/blob/main/.github/workflows/pipelines.yml\n- Extensions for Swashbuckle.AspNetCore API - https://github.com/codebeltnet/swashbuckle-aspnetcore/blob/main/.github/workflows/pipelines.yml\n- Extensions for xUnit API - https://github.com/codebeltnet/xunit/blob/main/.github/workflows/pipelines.yml\n- Extensions for YamlDotNet API - https://github.com/codebeltnet/yamldotnet/blob/main/.github/workflows/pipelines.yml\n- Shared Kernel API - https://github.com/codebeltnet/shared-kernel/blob/main/.github/workflows/pipelines.yml\n- Unitify API - https://github.com/codebeltnet/unitify/blob/main/.github/workflows/pipelines.yml\n\n### Intermediate CI/CD Pipeline\n\n- Savvy I/O - https://github.com/codebeltnet/savvyio/blob/main/.github/workflows/pipelines.yml\n\n### Advanced CI/CD Pipeline\n\n- Cuemon for .NET - https://github.com/gimlichael/Cuemon/blob/main/.github/workflows/pipelines.yml\n\n## Contributing to Analyze with SonarCloud from Codebelt\n\nContributions are welcome! \nFeel free to submit issues, feature requests, or pull requests to help improve this action.\n\n### License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\u003e [!TIP]\n\u003e To learn more about the Codebelt experience and offerings, visit our [organization page](https://github.com/codebeltnet) on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodebeltnet%2Fsonarcloud-scan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodebeltnet%2Fsonarcloud-scan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodebeltnet%2Fsonarcloud-scan/lists"}