Skip to content

Commit

Permalink
Create sijomc-sonarscan.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sensei-hacker authored Jan 3, 2024
1 parent de7053b commit 72b2db8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sijomc-sonarscan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
workflow_dispatch:
inputs:
projectVersion:
description: 'Version'
required: true
name: Development
jobs:
sonarQubeTrigger:
name: SonarQube Trigger
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: SonarQube Scan
uses: sijomc/sonarscan-action@master
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}
scannerOptions: ${{ secrets.SCANNER_OPTIONS }}
exclusions: ${{ secrets.SONAR_EXCLUSIONS }}
projectKey: "**Develop**"
projectName: "**Develop**"
projectVersion: ${{ github.event.inputs.projectVersion }}

0 comments on commit 72b2db8

Please sign in to comment.