FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docs/.github/workflows/codeql.yml at main · bcl/docs · GitHub
bcl
/
docs
Public
forked from
github/docs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docs
/
.github
/
workflows
/
codeql.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
38 lines (33 loc) · 1.15 KB
Breadcrumbs
docs
/
.github
/
workflows
/
codeql.yml
Copy path
File metadata and controls
38 lines (33 loc) · 1.15 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name
:
CodeQL analysis
#
**What it does**: This runs CodeQL on our repository.
#
**Why we have it**: Security scanning.
#
**Who does it impact**: Docs engineering.
on
:
push
:
branches
:
-
main
pull_request
:
branches
:
-
main
paths
:
-
'
**/*.js
'
-
'
.github/workflows/codeql.yml
'
permissions
:
actions
:
read
contents
:
read
security-events
:
write
#
This allows a subsequently queued workflow run to interrupt previous runs
concurrency
:
group
:
'
${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
'
cancel-in-progress
:
true
jobs
:
build
:
if
:
github.repository == 'github/docs-internal' || github.repository == 'github/docs'
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
-
uses
:
github/codeql-action/init@1ed1437484560351c5be56cf73a48a279d116b78
with
:
languages
:
javascript
#
comma separated list of values from {go, python, javascript, java, cpp, csharp} (not YET ruby, sorry!)
-
uses
:
github/codeql-action/analyze@1ed1437484560351c5be56cf73a48a279d116b78
continue-on-error
:
true
Back
|
FazBrowse Home
|
New Git URL