diff --git a/action.yml b/action.yml index 2661d068..0c22cfd5 100644 --- a/action.yml +++ b/action.yml @@ -164,7 +164,7 @@ runs: REPO_NAME="${FULL_REPO#*/}" # query='query { search(query: \"repo: '${{ github.repository }}' is:pr is:open Eco-CI in:body author:github-actions number:'$PR_NUMBER'\", last:10, type:ISSUE){ edges{ node{ ... on PullRequest{ body title } } } } }' - query='query { search(query: \"repo:'${{ github.repository }}' is:pr is:open Eco-CI in:body author:github-actions number:'$PR_NUMBER'\", last:10, type:ISSUE){ edges{ node{ ... on PullRequest{ body title } } } } }' + query='query { search(query: \"repo:'${{ github.repository }}' is:pr is:open number:'$PR_NUMBER'\", last:10, type:ISSUE){ edges{ node{ ... on PullRequest{ body title } } } } }' echo "DMM---" echo "$query" RESPONSE=$(curl -H "Authorization: bearer ${{ github.token }}" -X POST -d "{\"query\":\"$query\"}" https://api.github.com/graphql)