-
Notifications
You must be signed in to change notification settings - Fork 4
Refactor build workflows #20
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
Changes from all commits
c03918a
2a12c4a
458520c
7187aca
6cdd925
71a8c05
67367a4
bd13dfb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,11 +8,14 @@ jobs: | |
| name: PR Summary | ||
| if: github.actor != 'ospo-renovate[bot]' | ||
| runs-on: [ubuntu-latest] | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| steps: | ||
| - uses: SAP/ai-assisted-github-actions/pr-summary@93162bffd6b396623ffa5b20e4666e427db88414 # v3.0.2 | ||
| - uses: SAP/ai-assisted-github-actions/pr-summary@v3 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using a floating tag ( - uses: SAP/ai-assisted-github-actions/[email protected]
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| with: | ||
| aicore-service-key: ${{ secrets.AICORE_SERVICE_KEY }} | ||
| model: gpt-4o | ||
| model: anthropic--claude-4-sonnet | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There appears to be a typo in the model name. 'Claude 4 Sonnet' should likely be 'claude-3-sonnet' based on Anthropic's naming convention: model: claude-3-sonnet
# or
model: claude-3-5-sonnet
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| exclude-files: package-lock.json | ||
| display-mode: append | ||
| header-text: "---" | ||
|
|
@@ -21,9 +24,12 @@ jobs: | |
| name: PR Review | ||
| if: github.actor != 'ospo-renovate[bot]' | ||
| runs-on: [ubuntu-latest] | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| steps: | ||
| - uses: SAP/ai-assisted-github-actions/pr-review@93162bffd6b396623ffa5b20e4666e427db88414 # v3.0.2 | ||
| - uses: SAP/ai-assisted-github-actions/pr-review@v3 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, pin the - uses: SAP/ai-assisted-github-actions/[email protected] |
||
| with: | ||
| aicore-service-key: ${{ secrets.AICORE_SERVICE_KEY }} | ||
| model: gpt-4o | ||
| model: anthropic--claude-4-sonnet | ||
| exclude-files: package-lock.json | ||
Uh oh!
There was an error while loading. Please reload this page.