Skip to content

Commit

Permalink
sonarqube config (#534)
Browse files Browse the repository at this point in the history
Signed-off-by: Vikram Karve <[email protected]>
  • Loading branch information
vkarve-chef committed Mar 28, 2023
1 parent 1d40df4 commit c564845
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build
on:
push:
branches:
- main # or the name of your main branch
- develop
- 'release/**'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ip-range-controlled
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# If you wish to fail your job when the Quality Gate is red, uncomment the
# following lines. This would typically be used to fail a deployment.
# We do not recommend to use this in a pull request. Prefer using pull request
# decoration instead.
# - uses: sonarsource/sonarqube-quality-gate-action@main
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1 change: 1 addition & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sonar.projectKey=chef_knife-vsphere_AYcijxunJ4YHsO5MtJSd

0 comments on commit c564845

Please sign in to comment.