Skip to content

Commit

Permalink
Merge pull request #1668 from spryker-shop/feature/frw-9475-fixed-iss…
Browse files Browse the repository at this point in the history
…ue-with-child-relations-creation

Auto-merge based on green CI result.
  • Loading branch information
spryker-release-bot authored Dec 26, 2024
2 parents c19c936 + 3174b93 commit 0455f89
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .ci/snippet/ARTEFACTS
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

set +e

total=`cat /dev/shm/total`
failed=`cat /dev/shm/failed`

if [ "${failed}" != "" ] && [ "${failed}" -gt "0" ]; then
cmd=("${@}")
"${cmd[@]}" &
cmd_pid="${!}"
wait "${cmd_pid}"
status="${?}"
else
echo "Action is ignored because there are no failed tests."
fi
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/Pyz/Zed/DynamicEntity/data/installer/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -715,16 +715,16 @@
{
"fieldName": "name",
"fieldVisibleName": "name",
"isCreatable": false,
"isEditable": false,
"isCreatable": true,
"isEditable": true,
"type": "string",
"validation": { "isRequired": false }
},
{
"fieldName": "template_path",
"fieldVisibleName": "template_path",
"isCreatable": false,
"isEditable": false,
"isCreatable": true,
"isEditable": true,
"type": "string",
"validation": { "isRequired": false }
}
Expand Down

0 comments on commit 0455f89

Please sign in to comment.