We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a13b18 commit a3134e9Copy full SHA for a3134e9
1 file changed
.github/workflows/fe-code-quality.yml
@@ -1,7 +1,10 @@
1
name: Frontend Code Quality Workflow
2
3
-on: workflow_call
4
-
+on:
+ workflow_call:
5
+ secrets:
6
+ SONAR_CLOUD_TOKEN:
7
+ required: false
8
jobs:
9
code-quality:
10
runs-on: ubuntu-latest
@@ -60,6 +63,7 @@ jobs:
60
63
name: SonarCloud
61
64
needs: code-quality
62
65
66
+ if: ${{ secrets.SONAR_CLOUD_TOKEN != '' }}
67
steps:
68
- name: Checkout
69
uses: actions/checkout@v4
0 commit comments