From b9f9444fb79985625c6981038caa00e6346408ed Mon Sep 17 00:00:00 2001 From: Sean Goedecke Date: Mon, 4 Aug 2025 03:41:34 +0000 Subject: [PATCH] update docs --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e5f69b1..3d7186d 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ steps: token: ${{ secrets.USER_PAT }} ``` -For enhanced security, you can use separate tokens for the AI inference endpoint +If you want, yu can use separate tokens for the AI inference endpoint and the GitHub MCP server: ```yaml @@ -179,16 +179,13 @@ steps: with: prompt: 'List my open pull requests and create a summary' enable-github-mcp: true - token: ${{ secrets.AI_INFERENCE_TOKEN }} - github-mcp-token: ${{ secrets.GITHUB_MCP_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} + github-mcp-token: ${{ secrets.USER_PAT }} ``` When MCP is enabled, the AI model will have access to GitHub tools and can perform actions like searching issues and PRs. -**Note:** You can use the built-in `GITHUB_TOKEN`, or provide a separate GitHub -PAT via `github-mcp-token` for tighter security and permissions control. - ## Inputs Various inputs are defined in [`action.yml`](action.yml) to let you configure