Skip to content

Commit e3104ae

Browse files
authoredOct 15, 2024··
Merge pull request #8 from Meniole/main
fix: handle schema defaults and required fields correctly
2 parents f326df6 + dc46486 commit e3104ae

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed
 

‎action.yml

+22-5
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,24 @@ runs:
6767
6868
manifest["configuration"] = JSON.parse(configuration);
6969
70-
const updatedManifest = JSON.stringify(manifest, null, 2)
70+
function customReviver(key, value) {
71+
if (typeof value === "object" && value !== null) {
72+
if ("default" in value && "required" in value) {
73+
delete value.required;
74+
}
75+
if (Array.isArray(value.required)) {
76+
value.required = value.required.filter(
77+
(prop) => !(value.properties[prop] && "default" in value.properties[prop])
78+
);
79+
if (!value.required.length) {
80+
delete value.required;
81+
}
82+
}
83+
}
84+
return value;
85+
}
86+
87+
const updatedManifest = JSON.stringify(manifest, customReviver, 2);
7188
console.log('Updated manifest:', updatedManifest);
7289
fs.writeFileSync(manifestPath, updatedManifest);
7390
@@ -91,12 +108,12 @@ runs:
91108
GITHUB_TOKEN: ${{ steps.get_installation_token.outputs.token || github.token }}
92109
run: |
93110
app_token="${{ steps.get_installation_token.outputs.token }}" # Assuming this outputs your app token
94-
111+
95112
user_info=$(curl -s -H "Authorization: token $app_token" https://api.github.com/user)
96-
113+
97114
user_name=$(echo "$user_info" | jq -r .name)
98115
user_email=$(echo "$user_info" | jq -r .email)
99-
116+
100117
if [ "$user_email" == "null" ]; then
101118
user_email="ubiquity-os[bot]@users.noreply.github.com"
102119
user_name="ubiquity-os[bot]"
@@ -106,7 +123,7 @@ runs:
106123
git config --global user.name "$user_name"
107124
git config --global user.email "$user_email"
108125
git remote set-url origin https://${{ env.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
109-
126+
110127
git add "${{ inputs.manifestPath }}"
111128
git add -f ${{ github.workspace }}/dist/\*
112129
if [ -n "$(git diff-index --cached --name-only HEAD)" ]; then

0 commit comments

Comments
 (0)
Please sign in to comment.