Skip to content

Commit eac80a9

Browse files
authored
fix: fix env is not recognized in composite actions (#64)
1 parent f3f2ce5 commit eac80a9

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/actions/qodana/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@ runs:
55
uses: JetBrains/qodana-action@v2024.3
66
with:
77
pr-mode: false
8-
env:
9-
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1290658496 }}
10-
QODANA_ENDPOINT: 'https://qodana.cloud'

.github/workflows/qodana_code_quality.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,9 @@ jobs:
4444
- name: Run qodana code scanning
4545
uses: ./.github/workflows/actions/qodana
4646
if: ${{ steps.check-changed-files.outputs.any-changed }}
47+
env:
48+
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1290658496 }}
49+
QODANA_ENDPOINT: 'https://qodana.cloud'
50+
51+
4752

.github/workflows/renovate.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@ jobs:
2626
uses: ./.github/workflows/actions/typecheck-and-lint
2727
- name: Qodana check
2828
uses: ./.github/workflows/actions/qodana
29+
env:
30+
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1290658496 }}
31+
QODANA_ENDPOINT: 'https://qodana.cloud'
2932
- name: Test
3033
uses: ./.github/workflows/actions/test

0 commit comments

Comments
 (0)