Our default branch analysis has quit scanning the branch

We use sonarcloud with github, the language is C# primarily in the repo. We use the CI analysis method to scan code. Our PRs that run with a github action are working fine, but our main branch hasn’t been analyzed since 4/2. It was working fine before that and there have been many changes to that branch since that date.

I don’t see any errors or any way to manually kick that off. Can anyone point me in the correct direction to start troubleshooting this?

Hey there.

Has the SonarCloud GitHub Action run against your main branch recently?

You can check recent action runs on the Actions tab.

Typically this section of your GitHub Action YAML file will control when it runs (and you can only run it manually if workflow_dispatch is included)

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

That did it, there was a change that removed that.

Thanks!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.