File tree Expand file tree Collapse file tree 6 files changed +44
-7
lines changed Expand file tree Collapse file tree 6 files changed +44
-7
lines changed Original file line number Diff line number Diff line change
1
+ # Configure Languages for GitHub repository using Linguist
2
+
3
+ # Markdown & Make detection,
4
+ # exclude HTML, CSS & JavaScript
5
+ # docs/** linguist-detectable
6
+ * .edn linguist-detectable =true
7
+ * .md linguist-detectable =true
8
+ make linguist-detectable =true
9
+ * .css linguist-detectable =false
10
+ * .js linguist-detectable =false
11
+ * .html linguist-detectable =false
Original file line number Diff line number Diff line change 3
3
# Default owner accounts for the current repository
4
4
# Automatically added as a reviewr to all pull requests (not including drafts)
5
5
6
- * @ practicalli-john
6
+ * @ practicalli-johnny
Original file line number Diff line number Diff line change
1
+ title = " gitleaks config"
2
+
3
+ [allowlist ]
4
+ description = " global allow lists"
5
+ paths = [
6
+ ''' gitleaks.toml''' ,
7
+ ''' (.*?)(jpg|gif|doc|docx|zip|xls|pdf|bin|svg|socket)$''' ,
8
+ ''' (go.mod|go.sum)$''' ,
9
+ ''' gradle.lockfile''' ,
10
+ ''' node_modules''' ,
11
+ ''' package-lock.json''' ,
12
+ ''' pnpm-lock.yaml''' ,
13
+ ''' Database.refactorlog''' ,
14
+ ''' vendor''' ,
15
+ ]
16
+
17
+ [[rules ]]
18
+ description = " AWS Example API Key"
19
+ id = " aws-example-api-key"
20
+ regex = ''' AKIAIOSFODNN7EXAMPLE'''
21
+ keywords = [
22
+ " awstoken" ,
23
+ ]
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ MARKDOWN_MARKDOWN_LINK_CHECK_CONFIG_FILE: ".github/config/markdown-link-check.js
46
46
MARKDOWN_REMARK_LINT_DISABLE_ERRORS : true
47
47
# MARKDOWN_MARKDOWN_TABLE_FORMATTER_DISABLE_ERRORS: false
48
48
49
+ REPOSITORY_GITLEAKS_CONFIG_FILE : " .github/config/gitleaks.toml"
49
50
REPOSITORY_TRUFFLEHOG_DISABLE_ERRORS : true # Errors only as warnings
50
51
51
52
# SPELL_CSPELL_DISABLE_ERRORS: true
Original file line number Diff line number Diff line change 20
20
# - cron: "0 4 * * *" # at 04:04:04 ever day
21
21
# - cron: "0 4 * * 5" # at 04:04:04 ever Friday
22
22
- cron : " 0 4 1 * *" # at 04:04:04 on first day of month
23
- workflow_dispatch :
24
- # Run manually via GitHub Actions Workflow page
23
+ workflow_dispatch : # Run manually via GitHub Actions Workflow page
25
24
26
25
jobs :
27
26
scheduled-version-check :
@@ -32,10 +31,13 @@ jobs:
32
31
- run : echo "🐧 Job running on ${{ runner.os }} server"
33
32
- run : echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
34
33
35
- - name : " Checkout code "
34
+ - name : Checkout Code
36
35
uses : actions/checkout@v4
37
- - run : echo "🐙 ${{ github.repository }} repository was cloned to the runner."
38
-
36
+ with :
37
+ fetch-depth : 0
38
+ sparse-checkout : |
39
+ .github
40
+ - run : echo "🐙 ${{ github.repository }} repository sparse-checkout to the CI runner."
39
41
- name : " Antq Check versions"
40
42
uses : liquidz/antq-action@main
41
43
with :
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ lint-clean: ## Clean MegaLinter report information
134
134
$(info --------- MegaLinter Clean Reports ---------)
135
135
- rm -rf ./megalinter-reports
136
136
137
- megalinter-upgrade : # # Update MegaLinter config to latest version
137
+ megalinter-upgrade : # # Upgrade MegaLinter config to latest version
138
138
$(info --------- MegaLinter Upgrade Config ---------)
139
139
npx mega-linter-runner@latest --upgrade
140
140
# ------------------------------------ #
You can’t perform that action at this time.
0 commit comments