Skip to content

Commit

Permalink
Introduce PR template; new GH action; bump model (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlk authored Jul 13, 2024
1 parent 5e4a989 commit 8d1aa8c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Description
[Provide a brief description of the changes made in this pull request.]

## Changes Made
[List the main changes or additions made in this pull request. Use bullet points for clarity.]
- Change 1
- Change 2
- ...

## Screenshots
[If applicable, include screenshots or images to illustrate the changes made.]

## Additional Notes
[Add any additional information, context, or notes relevant to this pull request.]
15 changes: 15 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: labeler

on: [pull_request]

jobs:
labeler:
runs-on: ubuntu-latest
name: Label the PR size
steps:
- uses: codelytv/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ignore_file_deletions: 'true'
files_to_ignore: |
"README.md"
2 changes: 1 addition & 1 deletion .github/workflows/robin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPEN_AI_API_KEY: ${{ secrets.OPEN_AI_API_KEY }}
gpt_model_name: "gpt-4"
gpt_model_name: "gpt-4o"
files_to_ignore: |
"README.md"
"assets/*"

0 comments on commit 8d1aa8c

Please sign in to comment.