From 879c9afd80d9e237d08b7122b86b0658b2bc3c64 Mon Sep 17 00:00:00 2001 From: Rajendra Reddy Date: Mon, 6 Apr 2026 02:17:10 +0000 Subject: [PATCH] Add .gitea/workflows/sonar.yml --- .gitea/workflows/sonar.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/sonar.yml diff --git a/.gitea/workflows/sonar.yml b/.gitea/workflows/sonar.yml new file mode 100644 index 0000000..4224c24 --- /dev/null +++ b/.gitea/workflows/sonar.yml @@ -0,0 +1,15 @@ +name: CI + +on: + push: + branches: [main, testing] + pull_request: + branches: [main, testing] + +jobs: + sonar: + uses: your-org/ci-workflows/.gitea/workflows/sonarqube.yml@main + secrets: + SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }} + SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} \ No newline at end of file