Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion scripts/changed-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,30 @@ readonly ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
readonly excluded_modules=(".devcontainer" ".vscode" "docs")

# define an array of files that won't be included in the list
readonly excluded_files=("mkdocs.yml" ".github/dependabot.yml" ".github/workflows/sonar-*.yml")
readonly excluded_files=(
".github/dependabot.yml"
".github/FUNDING.yml"
".github/PULL_REQUEST_TEMPLATE.md"
".github/release-drafter.yml"
".github/settings.yml"
".github/workflows/codeql.yml"
".github/workflows/conventions.yml"
".github/workflows/docker-projects-latest.yml"
".github/workflows/release-drafter.yml"
".github/workflows/scorecard.yml"
".github/workflows/sonar-*.yml"
"scripts/bump-*.sh"
"scripts/check_environment.sh"
"scripts/*release.sh"
"CONTRIBUTING.md"
"LICENSE"
"mkdocs.yml"
"Pipfile*"
"README.md"
"RELEASING.md"
"requirements.txt"
"runtime.txt"
)

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