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 33# Default owner accounts for the current repository
44# Automatically added as a reviewr to all pull requests (not including drafts)
55
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
4646MARKDOWN_REMARK_LINT_DISABLE_ERRORS : true
4747# MARKDOWN_MARKDOWN_TABLE_FORMATTER_DISABLE_ERRORS: false
4848
49+ REPOSITORY_GITLEAKS_CONFIG_FILE : " .github/config/gitleaks.toml"
4950REPOSITORY_TRUFFLEHOG_DISABLE_ERRORS : true # Errors only as warnings
5051
5152# SPELL_CSPELL_DISABLE_ERRORS: true
Original file line number Diff line number Diff line change 2020 # - cron: "0 4 * * *" # at 04:04:04 ever day
2121 # - cron: "0 4 * * 5" # at 04:04:04 ever Friday
2222 - 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
2524
2625jobs :
2726 scheduled-version-check :
@@ -32,10 +31,13 @@ jobs:
3231 - run : echo "🐧 Job running on ${{ runner.os }} server"
3332 - run : echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
3433
35- - name : " Checkout code "
34+ - name : Checkout Code
3635 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."
3941 - name : " Antq Check versions"
4042 uses : liquidz/antq-action@main
4143 with :
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ lint-clean: ## Clean MegaLinter report information
134134 $(info --------- MegaLinter Clean Reports ---------)
135135 - rm -rf ./megalinter-reports
136136
137- megalinter-upgrade : # # Update MegaLinter config to latest version
137+ megalinter-upgrade : # # Upgrade MegaLinter config to latest version
138138 $(info --------- MegaLinter Upgrade Config ---------)
139139 npx mega-linter-runner@latest --upgrade
140140# ------------------------------------ #
You can’t perform that action at this time.
0 commit comments