**Motivations:** - Align master with current codebase (token from projects/<id>/.secrets/<env>/ia_token) - Id resolution by mail To or by API token; no slug **Root causes:** - Token moved from conf.json to .secrets/<env>/ia_token; env from directory name **Correctifs:** - Server and scripts resolve project+env by scanning all projects and envs **Evolutions:** - tickets-fetch-inbox routes by To address; notary-ai agents and API doc updated **Pages affectées:** - ai_working_help/server.js, docs, project_config.py, lib/project_config.sh - projects/README.md, lecoffreio/docs/API.md, gitea-issues/tickets-fetch-inbox.py
36 lines
948 B
Bash
Executable File
36 lines
948 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# List open issues for the configured Gitea repo.
|
|
# Output: JSON array (default) or one line per issue "number|title|state" with --lines.
|
|
# Usage: ./list-open-issues.sh [--lines] [--limit N]
|
|
#
|
|
set -euo pipefail
|
|
|
|
GITEA_ISSUES_DIR="${GITEA_ISSUES_DIR:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|
# shellcheck source=lib.sh
|
|
source "${GITEA_ISSUES_DIR}/lib.sh"
|
|
|
|
require_jq || exit 1
|
|
|
|
LINES=false
|
|
LIMIT=50
|
|
while [[ $# -gt 0 ]]; do
|
|
case "$1" in
|
|
--lines) LINES=true; shift ;;
|
|
--limit) LIMIT="$2"; shift 2 ;;
|
|
*) log_err "Unknown option: $1"; exit 1 ;;
|
|
esac
|
|
done
|
|
|
|
RESPONSE="$(gitea_api_get "/repos/${GITEA_REPO_OWNER}/${GITEA_REPO_NAME}/issues?state=open&page=1&limit=${LIMIT}")"
|
|
if ! echo "$RESPONSE" | jq -e . &>/dev/null; then
|
|
log_err "API error or invalid JSON: ${RESPONSE:0:200}"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$LINES" == true ]]; then
|
|
echo "$RESPONSE" | jq -r '.[] | "\(.number)|\(.title)|\(.state)"'
|
|
else
|
|
echo "$RESPONSE"
|
|
fi
|