Skip to content

Commit da05034

Browse files
authored
Chore: [AEA-0000] - do not check isCrossRepository (#5)
## Summary - Routine Change ### Details - do not check isCrossRepository
1 parent ccb6e1d commit da05034

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ runs:
3232
3333
for pr_number in "${pr_numbers[@]}"; do
3434
read -r pr_url head_sha < <(gh pr view "$pr_number" --repo "$REPO" --json url,headRefOid --jq '[.url, .headRefOid] | @tsv')
35-
read -r author_login is_verified is_cross_repository < <(gh api "/repos/$REPO/commits/$head_sha" --jq '[.author.login // "", (.commit.verification.verified // false), (.commit.verification.reason // "")] | @tsv')
35+
read -r author_login is_verified < <(gh api "/repos/$REPO/commits/$head_sha" --jq '[.author.login // "", (.commit.verification.verified // false)] | @tsv')
3636
37-
if [[ "$is_cross_repository" == "false" ]] && [[ "$is_verified" == "true" ]] && [[ "$author_login" == "dependabot[bot]" || "$author_login" == "eps-create-pull-request[bot]" ]]; then
37+
if [[ "$is_verified" == "true" ]] && [[ "$author_login" == "dependabot[bot]" || "$author_login" == "eps-create-pull-request[bot]" ]]; then
3838
eligible_pr_urls+=("$pr_url")
3939
fi
4040
done

0 commit comments

Comments
 (0)