67
67
68
68
manifest["configuration"] = JSON.parse(configuration);
69
69
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);
71
88
console.log('Updated manifest:', updatedManifest);
72
89
fs.writeFileSync(manifestPath, updatedManifest);
73
90
@@ -91,12 +108,12 @@ runs:
91
108
GITHUB_TOKEN : ${{ steps.get_installation_token.outputs.token || github.token }}
92
109
run : |
93
110
app_token="${{ steps.get_installation_token.outputs.token }}" # Assuming this outputs your app token
94
-
111
+
95
112
user_info=$(curl -s -H "Authorization: token $app_token" https://api.github.com/user)
96
-
113
+
97
114
user_name=$(echo "$user_info" | jq -r .name)
98
115
user_email=$(echo "$user_info" | jq -r .email)
99
-
116
+
100
117
if [ "$user_email" == "null" ]; then
101
118
user_email="ubiquity-os[bot]@users.noreply.github.com"
102
119
user_name="ubiquity-os[bot]"
@@ -106,7 +123,7 @@ runs:
106
123
git config --global user.name "$user_name"
107
124
git config --global user.email "$user_email"
108
125
git remote set-url origin https://${{ env.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
109
-
126
+
110
127
git add "${{ inputs.manifestPath }}"
111
128
git add -f ${{ github.workspace }}/dist/\*
112
129
if [ -n "$(git diff-index --cached --name-only HEAD)" ]; then
0 commit comments