We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a30112b commit e5739c5Copy full SHA for e5739c5
tools/check-deploy-needed.sh
@@ -55,6 +55,11 @@ echo "Latest IDF commit in $AR_BRANCH of $AR_REPO: $LATEST_LIBS_IDF"
55
AR_HAS_COMMIT=`if [ "$LATEST_LIBS_IDF" == "$IDF_COMMIT" ]; then echo "1"; else echo "0"; fi`
56
AR_HAS_PR=`github_pr_exists "$AR_REPO" "$AR_NEW_BRANCH_NAME"`
57
58
+curl -sf -H "Authorization: token $GITHUB_TOKEN" \
59
+ -H "Accept: application/vnd.github.v3+json" \
60
+ "https://api.github.com/repos/$AR_LIBS_REPO/releases?per_page=1" | head -n 20
61
+
62
63
LIBS_RELEASE_ID=`github_release_id "$AR_LIBS_REPO" "$LIBS_RELEASE_TAG" 2>&1 >/dev/null`
64
LIBS_HAS_RELEASE=`if [ -n "$LIBS_RELEASE_ID" ]; then echo "1"; else echo "0"; fi`
65
0 commit comments