-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/use token t2 #213
Fix/use token t2 #213
Conversation
da36f15
to
07b0577
Compare
anthropic debug - [puLL-Merge] - brave/pull-merge@213 DescriptionThis PR modifies the ChangesChanges
sequenceDiagram
participant A as Action
participant G as getPatch function
participant GH as GitHub API
A->>G: Call with options (including github_token)
G->>G: Check if githubToken is provided
alt githubToken is provided
G->>GH: Use provided token for authentication
else githubToken is not provided
G->>GH: Use default GitHub client
end
G->>GH: Request patch
GH-->>G: Return patch
G-->>A: Return patch data
graph TD
A[Action Entry Point] --> B[getPatch function]
B --> C{Is githubToken provided?}
C -->|Yes| D[Use provided token]
C -->|No| E[Use default GitHub client]
D --> F[Download patch]
E --> F
|
bedrock debug - [puLL-Merge] - brave/pull-merge@213 DescriptionThis PR modifies the ChangesChanges
sequenceDiagram
participant A as action.cjs
participant B as Unspecified Function
participant C as getPatch.js
participant D as GitHub API
A->>B: Call with githubToken
B->>C: Call getPatch with githubToken
C->>D: Authenticate and fetch patch
D-->>C: Return patch data
C-->>B: Return patch data
B-->>A: Return result
graph TD
A[action.cjs] --> B[Unspecified Function]
B --> C[getPatch.js]
C --> D[GitHub API]
A --> |githubToken| B
B --> |githubToken| C
C --> |auth| D
Possible IssuesThe removal of the fallback logic in Security HotspotsThe addition of |
openai debug - [puLL-Merge] - brave/pull-merge@213 DescriptionThis pull request modifies the handling of the GitHub token used for authentication when working with private repositories. The motivation for this change is to ensure that the ChangesChanges
|
No description provided.