We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361c1e2 commit e856643Copy full SHA for e856643
.github/workflows/update-automation.yaml
@@ -287,6 +287,12 @@ jobs:
287
fi
288
done
289
290
+ - name: Update excluded packages
291
+ env:
292
+ LATEST_CODE_OSS_TAG: ${{ needs.update-automation.outputs.latest-code-oss-tag }}
293
+ run: |
294
+ jq --arg version "$LATEST_CODE_OSS_TAG" 'to_entries | map(if .key | startswith("code-oss-dev@") then .key = "code-oss-dev@" + $version else . end) | from_entries' build-tools/oss-attribution/excluded-packages.json > tmp.json && mv tmp.json build-tools/oss-attribution/excluded-packages.json
295
+
296
- name: Generate unified OSS attribution
297
run: |
298
./scripts/generate-oss-attribution.sh --command generate_unified_oss_attribution
0 commit comments