File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/seclab_taskflow_agent Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ if [ -v CODESPACES ]; then
77 if [ ! -v AI_API_TOKEN ]; then
88 echo " ⚠️ Running in Codespaces - please add AI_API_TOKEN to your Codespaces secrets"
99 fi
10- if [ ! -v GITHUB_PERSONAL_ACCESS_TOKEN ]; then
11- echo " ⚠️ Running in Codespaces - please add GITHUB_PERSONAL_ACCESS_TOKEN to your Codespaces secrets"
10+ if [ ! -v GH_TOKEN ]; then
11+ echo " ⚠️ Running in Codespaces - please add GH_TOKEN to your Codespaces secrets"
1212 fi
1313fi
1414
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ Example:
4646# Tokens
4747AI_API_TOKEN=< your_github_token>
4848# MCP configs
49- GITHUB_PERSONAL_ACCESS_TOKEN =< your_github_token>
50- CODEQL_DBS_BASE_PATH=" /app/data /codeql_databases"
49+ GH_TOKEN =< your_github_token>
50+ CODEQL_DBS_BASE_PATH=" /app/my_data /codeql_databases"
5151AI_API_ENDPOINT=" https://models.github.ai/inference"
5252```
5353
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ touch -a .env
1919
2020docker run -i \
2121 --mount type=bind,src=" $PWD " ,dst=/app \
22- -e GITHUB_PERSONAL_ACCESS_TOKEN =" $GITHUB_PERSONAL_ACCESS_TOKEN " \
22+ -e GH_TOKEN =" $GH_TOKEN " \
2323 -e AI_API_TOKEN=" $AI_API_TOKEN " \
2424 " ghcr.io/githubsecuritylab/seclab-taskflow-agent" " $@ "
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ dependencies = [
104104 " typing-inspection==0.4.1" ,
105105 " typing_extensions==4.14.1" ,
106106 " ujson==5.10.0" ,
107- " urllib3==2.5 .0" ,
107+ " urllib3==2.6 .0" ,
108108 " uvicorn==0.35.0" ,
109109 " zipp==3.23.0" ,
110110]
Original file line number Diff line number Diff line change 11# SPDX-FileCopyrightText: 2025 GitHub
22# SPDX-License-Identifier: MIT
3- __version__ = "0.0.7 "
3+ __version__ = "0.0.8 "
You can’t perform that action at this time.
0 commit comments