Merge pull request #1491 from placeAtlas/cleanup

Disabled expired Qodana step
This commit is contained in:
AnonymousRandomPerson 2024-01-01 16:22:21 -06:00 committed by GitHub
commit d3c742b7e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 44 deletions

View File

@ -1,44 +0,0 @@
name: Qodana
on:
workflow_dispatch:
pull_request_target:
branches:
- master
paths:
- "**.js"
- "**.sh"
- "**.py"
push:
branches:
- master
paths:
- "**.js"
- "**.sh"
- "**.py"
jobs:
qodana:
name: Qodana
runs-on: ubuntu-latest
if: github.repository_owner == 'placeAtlas'
permissions:
contents: write
pull-requests: write
checks: write
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check using Qodana
uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
- name: Upload results
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}