mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-13 21:41:54 +01:00
Merge pull request #1491 from placeAtlas/cleanup
Disabled expired Qodana step
This commit is contained in:
commit
d3c742b7e4
1 changed files with 0 additions and 44 deletions
44
.github/workflows/qodana.yml
vendored
44
.github/workflows/qodana.yml
vendored
|
@ -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 }}
|
||||
|
Loading…
Reference in a new issue