Skip to content

Commit b10e223

Browse files
committed
X
1 parent 828d972 commit b10e223

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/actions/create-pr/action.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,16 @@ runs:
7777
fi
7878
echo "=== rate limit ==="
7979
gh api https://api.github.com/rate_limit
80+
echo
8081
echo "=== user ==="
81-
gh api user
82+
gh api user || true
83+
echo
84+
echo "=== user mbg ==="
85+
gh api https://api.github.com/users/mbg || true
86+
echo
87+
echo "=== user igfoo ==="
88+
gh api https://api.github.com/users/igfoo || true
89+
echo
8290
echo "=== Creating new PR ==="
8391
gh pr create --head "$HEAD_BRANCH" --base "$BASE_BRANCH" --title "$TITLE" --body "$BODY" --assignee ${{ github.actor }} --draft
8492
if [[ $? -ne 0 ]]; then

0 commit comments

Comments
 (0)