mirror of
https://github.com/SonarSource/sonarqube-quality-gate-action.git
synced 2026-09-23 21:48:32 +00:00
17 lines
461 B
YAML
17 lines
461 B
YAML
name: SonarQube Quality Gate Check
|
|
description: >
|
|
Check if a project / analysis passed the Quality Gate check
|
|
branding:
|
|
icon: check
|
|
color: green
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: $GITHUB_ACTION_PATH/script/check-quality-gate.sh ${{ inputs.scanMetadataReportFile }}
|
|
shell: bash
|
|
inputs:
|
|
scanMetadataReportFile:
|
|
description: Location of the scanner metadata report file
|
|
required: false
|
|
default: .scannerwork/report-task.txt
|