Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/scripts/first-time-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ name: $LOWERCASE_NAME
project_files:
- docker-compose.$LOWERCASE_NAME.yaml

ddev_version_constraint: '>= v1.24.3'
ddev_version_constraint: '>= v1.24.10'
EOF
}

Expand Down
3 changes: 3 additions & 0 deletions .github/scripts/update-checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ check_gitattributes() {
if ! grep -q "tests" "$gitattributes"; then
actions+=("$gitattributes should contain 'tests', see upstream file $UPSTREAM/$gitattributes")
fi
if ! grep -q ".editorconfig" "$gitattributes"; then
actions+=("$gitattributes should contain '.editorconfig', see upstream file $UPSTREAM/$gitattributes")
fi
else
actions+=("$gitattributes is missing, see upstream file $UPSTREAM/$gitattributes")
fi
Expand Down