mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 13:15:35 +03:00
f54d234626
workflows/analysis: Use GITHUB_TOKEN instead of GIT_TOKEN, and some cleanup
27 lines
844 B
Bash
Executable file
27 lines
844 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#1: BRANCH
|
|
#2: TYPE
|
|
#3: PR
|
|
|
|
BRANCH=$1
|
|
TYPE=$2
|
|
PR=$3
|
|
|
|
source scripts/lib.sh
|
|
|
|
BRANCH_TYPE=$BRANCH-$TYPE
|
|
|
|
# delete all old comments, matching this type
|
|
echo "Deleting old comments for $BRANCH_TYPE"
|
|
oldComments=$(curl_gh -X GET https://api.github.com/repos/nextcloud/android/issues/$PR/comments | jq --arg TYPE $BRANCH_TYPE '.[] | (.id |tostring) + "|" + (.user.login | test("(nextcloud-android-bot|github-actions)") | tostring) + "|" + (.body | test([$TYPE]) | tostring)'| grep "true|true" | tr -d "\"" | cut -f1 -d"|")
|
|
count=$(echo -n "$oldComments" | grep -c '^')
|
|
echo "Found $count old comments"
|
|
|
|
if [ "$count" -gt 0 ]; then
|
|
echo "$oldComments" | while read comment ; do
|
|
echo "Deleting comment: $comment"
|
|
curl_gh -X DELETE https://api.github.com/repos/nextcloud/android/issues/comments/$comment
|
|
done
|
|
fi
|
|
|
|
exit 0
|