merge-after-ci: just inline script
All checks were successful
build / test (pull_request) Successful in 18s

This commit is contained in:
Jörg Thalheim 2023-08-22 13:20:16 +02:00
parent 295591ed79
commit c44338ec84
2 changed files with 4 additions and 8 deletions

View File

@ -18,6 +18,9 @@ writeShellApplication {
tea-create-pr
];
text = ''
bash ${./script.sh} "$@"
remoteName="''${1:-origin}"
targetBranch="''${2:-main}"
shift && shift
tea-create-pr "$remoteName" "$targetBranch" --assignees clan-bot "$@"
'';
}

View File

@ -1,7 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
remoteName="${1:-origin}"
targetBranch="${2:-main}"
shift && shift
tea-create-pr "$remoteName" "$targetBranch" --assignees clan-bot "$@"