fix: tea_relabel uses edit subcommand, add sha256 checksum for tea binary (#666)

- tea_relabel: use `tea issues edit` instead of `tea issues labels`
  (the latter is the list subcommand and ignores --labels)
- Dockerfile: verify tea binary sha256 after download

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
openhands 2026-03-25 13:34:58 +00:00
parent 687bf0ad5b
commit 50b5cea2cb
2 changed files with 3 additions and 1 deletions

View file

@ -55,7 +55,7 @@ tea_relabel() {
local IFS=','
local labels="$*"
tea issues labels "$issue_num" --login "$TEA_LOGIN" --repo "$FORGE_REPO" \
tea issues edit "$issue_num" --login "$TEA_LOGIN" --repo "$FORGE_REPO" \
--labels "$labels"
}