FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
secureCodeBox/.github/workflows/mega-linter.yml at main · secureCodeBox/secureCodeBox · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
secureCodeBox
/
secureCodeBox
Public
Notifications
You must be signed in to change notification settings
Fork
183
Star
985
Code
Issues
62
Pull requests
3
Discussions
Actions
Projects
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
secureCodeBox
/
.github
/
workflows
/
mega-linter.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
65 lines (56 loc) · 2.52 KB
Breadcrumbs
secureCodeBox
/
.github
/
workflows
/
mega-linter.yml
Copy path
File metadata and controls
65 lines (56 loc) · 2.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
SPDX-FileCopyrightText: the secureCodeBox authors
#
#
SPDX-License-Identifier: Apache-2.0
---
#
The CI runs on ubuntu-24.04; More info about the installed software is found here:
#
https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
#
MegaLinter GitHub Action configuration file
#
More info at https://megalinter.github.io
name
:
MegaLinter
on
:
#
Trigger mega-linter at every push. Action will also be visible from Pull Requests to master
push
:
#
Comment this line to trigger action only on pull-requests (not recommended if you don't pay for GH Actions)
pull_request
:
branches
:
[master, main]
permissions
:
contents
:
read
env
:
#
Comment env block if you do not want to apply fixes
#
Apply linter fixes configuration
APPLY_FIXES
:
none
#
When active, APPLY_FIXES must also be defined as environment variable (in github/workflows/mega-linter.yml or other CI tool)
APPLY_FIXES_EVENT
:
pull_request
#
Decide which event triggers application of fixes in a commit or a PR (pull_request, push, all)
APPLY_FIXES_MODE
:
commit
#
If APPLY_FIXES is used, defines if the fixes are directly committed (commit) or posted in a PR (pull_request)
concurrency
:
group
:
${{ github.ref }}-${{ github.workflow }}
cancel-in-progress
:
true
jobs
:
build
:
name
:
MegaLinter
runs-on
:
ubuntu-24.04
steps
:
#
Git Checkout
-
name
:
Checkout Code
uses
:
actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
#
v7.0.1
with
:
token
:
${{ secrets.PAT || secrets.GITHUB_TOKEN }}
fetch-depth
:
0
#
MegaLinter
-
name
:
MegaLinter
id
:
ml
#
You can override MegaLinter flavor used to have faster performances
#
More info at https://megalinter.github.io/flavors/
uses
:
oxsecurity/megalinter@15e5b45552097e318c93de385779ce3b1084052c
#
v10.0.0
env
:
#
All available variables are described in documentation
#
https://megalinter.github.io/configuration/
VALIDATE_ALL_CODEBASE
:
false
#
only lint changed files
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
#
ADD YOUR CUSTOM ENV VARIABLES HERE TO OVERRIDE VALUES OF .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY
#
Upload MegaLinter artifacts
-
name
:
Archive production artifacts
if
:
${{ success() }} || ${{ failure() }}
uses
:
actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
#
v7.0.1
with
:
name
:
MegaLinter reports
path
:
|
megalinter-reports
mega-linter.log
Back
|
FazBrowse Home
|
New Git URL