We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18286a0 commit 18711d3Copy full SHA for 18711d3
.github/workflows/jules_bot_action.yml
@@ -29,6 +29,9 @@ jobs:
29
JULES_KEY: ${{ secrets.JULES_KEY }}
30
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
31
GOOGLE_API_KEY: ${{ secrets.GEMINI_API_KEY }}
32
+ ISSUE_TITLE: ${{ github.event.issue.title }}
33
+ ISSUE_NUMBER: ${{ github.event.issue.number }}
34
+ ISSUE_BODY: ${{ github.event.issue.body }}
35
+ ISSUE_URL: ${{ github.event.issue.html_url }}
36
run: |
- printf -v PROMPT "%q\n" "Triage this new issue: ${{ github.event.issue.title }} ${{ github.event.issue.number }} ${{ github.event.issue.body }} ${{ github.event.issue.html_url }}"
- python julesbot/issues_call.py --prompt "$PROMPT"
37
+ python julesbot/issues_call.py --prompt "Triage this new issue: $ISSUE_TITLE $ISSUE_NUMBER $ISSUE_BODY $ISSUE_URL"
0 commit comments