diff --git a/.github/workflows/commitlint.yaml b/.github/workflows/commitlint.yaml index 84a57d4c..663f1520 100644 --- a/.github/workflows/commitlint.yaml +++ b/.github/workflows/commitlint.yaml @@ -24,4 +24,6 @@ jobs: run: npm install --save-dev @commitlint/{config-conventional,cli} - name: Lint PR title - run: echo "${{ github.event.pull_request.title }}" | npx commitlint + env: + PR_TITLE: ${{ github.event.pull_request.title }} + run: echo "$PR_TITLE" | npx commitlint diff --git a/.github/workflows/scan-codeql.yaml b/.github/workflows/scan-codeql.yaml index da082e7f..a2880148 100644 --- a/.github/workflows/scan-codeql.yaml +++ b/.github/workflows/scan-codeql.yaml @@ -32,7 +32,7 @@ jobs: strategy: fail-fast: false matrix: - language: ["go","javascript"] + language: ["go"] steps: - name: Checkout