[main] Bump the identity-dependencies group in /eng/dependabot/independent with 3 updates #1056
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot Verify ClearlyDefined | |
on: | |
pull_request: | |
paths: ['eng/dependabot/**'] | |
permissions: | |
pull-requests: read | |
jobs: | |
dependabotVerify: | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@dbb049abf0d677abbd7f7eee0375145b417fdd34 | |
- name: Check ClearlyDefined | |
if: ${{steps.metadata.outputs.package-ecosystem == 'nuget'}} | |
run: | | |
set -e | |
blockPr="" | |
while read -r dependency; do | |
url="https://api.clearlydefined.io/definitions/nuget/nuget/-/$dependency" | |
echo "Checking $dependency at $url" | |
license=$(curl -sX GET "$url" -H "accept: */*" | jq -r '.licensed.declared') | |
if [ "$license" == "null" ]; then | |
echo "--> Not harvested, submitting request." | |
curl -sX POST "https://api.clearlydefined.io/harvest" -H "accept: */*" -H "Content-Type: application/json" -d "[{\"tool\":\"package\",\"coordinates\":\"nuget/nuget/-/$dependency\"}]" | |
echo | |
if [[ "$dependency" == Microsoft.* ]] || [[ "$dependency" == Azure.* ]] || [[ "$dependency" == System.* ]]; then | |
echo "--> 1P dependency" | |
else | |
echo "--> 3P dependency" | |
blockPr="true" | |
fi | |
fi | |
done <<< $(echo '${{steps.metadata.outputs.updated-dependencies-json}}' | jq -r '.[] | .dependencyName + "/" + .newVersion') | |
if [ "$blockPr" == "true" ]; then | |
echo "Blocking PR" | |
exit 1 | |
fi |