File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
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,7 +46,7 @@ Example:
4646# Tokens
4747AI_API_TOKEN=< your_github_token>
4848# MCP configs
49- GITHUB_PERSONAL_ACCESS_TOKEN =< your_github_token>
49+ GH_TOKEN =< your_github_token>
5050CODEQL_DBS_BASE_PATH=" /app/my_data/codeql_databases"
5151```
5252
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" " $@ "
You can’t perform that action at this time.
0 commit comments