Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

git-bob

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

git-bob - npm Package Compare versions

Comparing version
0.23.0
to
0.23.1
+1
-1
PKG-INFO
Metadata-Version: 2.4
Name: git-bob
Version: 0.23.0
Version: 0.23.1
Summary: git-bob uses AI to solve Github-issues. It runs inside the Github CI, no need to install anything on your computer.

@@ -5,0 +5,0 @@ Home-page: https://github.com/haesleinhuepf/git-bob

Metadata-Version: 2.4
Name: git-bob
Version: 0.23.0
Version: 0.23.1
Summary: git-bob uses AI to solve Github-issues. It runs inside the Github CI, no need to install anything on your computer.

@@ -5,0 +5,0 @@ Home-page: https://github.com/haesleinhuepf/git-bob

@@ -1,2 +0,2 @@

__version__ = "0.23.0"
__version__ = "0.23.1"

@@ -3,0 +3,0 @@

@@ -616,2 +616,3 @@ # This file contains utility functions using the github API via github-python:

repo = get_repository_handle(repository)
access_token = os.getenv('GITHUB_API_KEY')

@@ -623,3 +624,4 @@ pull_request = repo.get_pull(pull_request)

# read the content of a url
response = requests.get(pull_request.diff_url)
headers = {'Authorization': f'token {access_token}'}
response = requests.get(pull_request.diff_url, headers=headers)
if response.status_code == 200:

@@ -626,0 +628,0 @@ # Return the content of the website