Skip to content

Commit 7c6278f

Browse files
authored
chore(ci): exclude more files for a full-blown build (#3122)
1 parent b395520 commit 7c6278f

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

scripts/changed-modules.sh

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,30 @@ readonly ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
7474
readonly excluded_modules=(".devcontainer" ".vscode" "docs")
7575

7676
# 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+
)
78101

79102
# define an array of modules that won't be part of the build
80103
readonly no_build_modules=("modules/k6")

0 commit comments

Comments
 (0)