-
Notifications
You must be signed in to change notification settings - Fork 376
Open
Description
I have a PR-workflow file in my .github/workflow
Whenever a PR is created, a CodeQL action is being run from this config but an additional standalone CodeQL action is also created which fails with a warning
name: PR Workflow
on:
pull_request:
branches:
- '**'
jobs:
# few other actions here
CodeQL:
name: Analyse code with codeQL
runs-on: ubuntu-latest
needs: Continuous-Integration
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
What changes do i need to make , to stop the last action from running which remains unresolved with the above warning?
Metadata
Metadata
Assignees
Labels
No labels