Update daily_README.yaml

This commit is contained in:
Alexandre
2022-05-08 21:31:08 +02:00
committed by GitHub
parent b0bdd117ad
commit 1aba63d177

View File

@@ -47,9 +47,11 @@ jobs:
COUNTER=0
while [[ $(jq -r --arg COUNTER $COUNTER ".[$COUNTER].title" issueslist) != null ]]; do
#Increment counter
let COUNTER=COUNTER+1
(( COUNTER=COUNTER+1 )) || true
echo "Counter = $COUNTER"
#Get variables
TITLE="$(jq -r --arg COUNTER $COUNTER ".[$COUNTER].title" issueslist)"
echo "Title =$TITLE"
#Check if relevant to addon
if [[ "$TITLE" == *"$f"* ]]; then
REQ="$(jq -r --arg COUNTER $COUNTER ".[$COUNTER].user.login" issueslist)"