File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,30 @@ readonly ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
74
74
readonly excluded_modules=(" .devcontainer" " .vscode" " docs" )
75
75
76
76
# define an array of files that won't be included in the list
77
- readonly excluded_files=(" mkdocs.yml" " .github/dependabot.yml" " .github/workflows/sonar-*.yml" )
77
+ readonly excluded_files=(
78
+ " .github/dependabot.yml"
79
+ " .github/FUNDING.yml"
80
+ " .github/PULL_REQUEST_TEMPLATE.md"
81
+ " .github/release-drafter.yml"
82
+ " .github/settings.yml"
83
+ " .github/workflows/codeql.yml"
84
+ " .github/workflows/conventions.yml"
85
+ " .github/workflows/docker-projects-latest.yml"
86
+ " .github/workflows/release-drafter.yml"
87
+ " .github/workflows/scorecard.yml"
88
+ " .github/workflows/sonar-*.yml"
89
+ " scripts/bump-*.sh"
90
+ " scripts/check_environment.sh"
91
+ " scripts/*release.sh"
92
+ " CONTRIBUTING.md"
93
+ " LICENSE"
94
+ " mkdocs.yml"
95
+ " Pipfile*"
96
+ " README.md"
97
+ " RELEASING.md"
98
+ " requirements.txt"
99
+ " runtime.txt"
100
+ )
78
101
79
102
# define an array of modules that won't be part of the build
80
103
readonly no_build_modules=(" modules/k6" )
You can’t perform that action at this time.
0 commit comments