8 lines
176 B
Bash
8 lines
176 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
remoteName="${1:-origin}"
|
|
targetBranch="${2:-main}"
|
|
shift && shift
|
|
tea-create-pr "$remoteName" "$targetBranch" --assignees clan-bot "$@"
|