Skip to content

Commit

Permalink
Merge pull request #57 from haesleinhuepf/bump-git-bob-0.2
Browse files Browse the repository at this point in the history
use git-bob 0.2.0
  • Loading branch information
haesleinhuepf authored Aug 5, 2024
2 parents 0952e98 + 80f04c5 commit 6402e4c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/comment-on-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
echo "Organization - ${{ github.repository_owner }}"
echo "Repository Name - ${{ github.repository }}"
- name: Print Job details
run: |
echo "Run ID - ${{ github.run_id }}"
echo "Job ID - ${{ github.job }}"
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand All @@ -29,12 +34,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git-bob==0.1.2
pip install git-bob==0.2.0
- name: Run Python
env:
#ANTHROPIC_API_KEY: "${{ secrets.ANTHROPIC_API_KEY }}"
GIT_BOB_LLM_NAME: "gpt-4o-2024-05-13"
ANTHROPIC_API_KEY: "${{ secrets.ANTHROPIC_API_KEY }}"
GOOGLE_API_KEY: "${{ secrets.GOOGLE_API_KEY }}"
GIT_BOB_LLM_NAME: "${{ secrets.GIT_BOB_LLM_NAME }}"
OPENAI_API_KEY: "${{ secrets.OPENAI_API_KEY }}"
GITHUB_API_KEY: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_RUN_ID: "${{ github.run_id }}"
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/review-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
echo "Organization - ${{ github.repository_owner }}"
echo "Repository Name - ${{ github.repository }}"
- name: Print Job details
run: |
echo "Run ID - ${{ github.run_id }}"
echo "Job ID - ${{ github.job }}"
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand All @@ -28,12 +33,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git-bob==0.1.2
pip install git-bob==0.2.0
- name: Run Python
env:
#ANTHROPIC_API_KEY: "${{ secrets.ANTHROPIC_API_KEY }}"
GIT_BOB_LLM_NAME: "gpt-4o-2024-05-13"
ANTHROPIC_API_KEY: "${{ secrets.ANTHROPIC_API_KEY }}"
GOOGLE_API_KEY: "${{ secrets.GOOGLE_API_KEY }}"
GIT_BOB_LLM_NAME: "${{ secrets.GIT_BOB_LLM_NAME }}"
OPENAI_API_KEY: "${{ secrets.OPENAI_API_KEY }}"
GITHUB_API_KEY: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_RUN_ID: "${{ github.run_id }}"
Expand Down

0 comments on commit 6402e4c

Please sign in to comment.