We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 828d972 commit b10e223Copy full SHA for b10e223
.github/actions/create-pr/action.yml
@@ -77,8 +77,16 @@ runs:
77
fi
78
echo "=== rate limit ==="
79
gh api https://api.github.com/rate_limit
80
+ echo
81
echo "=== user ==="
- gh api user
82
+ gh api user || true
83
84
+ echo "=== user mbg ==="
85
+ gh api https://api.github.com/users/mbg || true
86
87
+ echo "=== user igfoo ==="
88
+ gh api https://api.github.com/users/igfoo || true
89
90
echo "=== Creating new PR ==="
91
gh pr create --head "$HEAD_BRANCH" --base "$BASE_BRANCH" --title "$TITLE" --body "$BODY" --assignee ${{ github.actor }} --draft
92
if [[ $? -ne 0 ]]; then
0 commit comments