-
Notifications
You must be signed in to change notification settings - Fork 17
Update tenet-pr-review.yml #111
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
Open
S3DFX-CYBER
wants to merge
6
commits into
main
Choose a base branch
from
S3DFX-CYBER-patch-6
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
98b9a96
Update tenet-pr-review.yml
S3DFX-CYBER b89669a
Update tenet-pr-review.yml
S3DFX-CYBER 927e40e
Update .github/workflows/tenet-pr-review.yml
S3DFX-CYBER 8009c3c
Merge branch 'main' into S3DFX-CYBER-patch-6
S3DFX-CYBER 98c85e0
Merge branch 'main' into S3DFX-CYBER-patch-6
S3DFX-CYBER 6a85340
Merge branch 'main' into S3DFX-CYBER-patch-6
S3DFX-CYBER File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| name: 🤖 TENET Agent - PR Review | ||
|
|
||
| on: | ||
| pull_request: | ||
| pull_request_target: | ||
| types: [opened, synchronize, reopened] | ||
|
|
||
| permissions: | ||
|
|
@@ -13,38 +13,43 @@ jobs: | |
| tenet-review: | ||
| name: TENET Security Review | ||
| runs-on: ubuntu-latest | ||
| # Skip bot-created PRs to avoid loops | ||
| if: | | ||
| github.actor != 'github-actions[bot]' && | ||
| github.actor != 'coderabbitai[bot]' | ||
| if: github.event.pull_request.user.login != 'github-actions[bot]' && github.event.pull_request.user.login != 'coderabbitai[bot]' | ||
|
|
||
| # SECURITY: Do NOT add `ref: github.event.pull_request.head.sha` here. | ||
| # pull_request_target runs with repository secrets. | ||
| # Checking out fork code could expose secrets. | ||
| # TENET reads PR diffs through the GitHub API using HEAD_SHA. | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2 | ||
| with: | ||
| fetch-depth: 0 | ||
|
S3DFX-CYBER marked this conversation as resolved.
|
||
| persist-credentials: false | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v6 | ||
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 #v6.2.0 | ||
| with: | ||
| python-version: "3.11" | ||
| cache: "pip" | ||
| cache-dependency-path: .github/tenet_agent/requirements.txt | ||
| cache-dependency-path: agent/tenet_agent/requirements.txt | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| - name: Install TENET agent dependencies | ||
| run: pip install -r .github/tenet_agent/requirements.txt | ||
| run: pip install -r agent/tenet_agent/requirements.txt | ||
|
S3DFX-CYBER marked this conversation as resolved.
|
||
|
|
||
| - name: Check TENET_AI_KEY is configured | ||
| id: key_check | ||
| run: | | ||
| if [ -z "$TENET_AI_KEY" ]; then | ||
| echo "⚠️ TENET_AI_KEY is not set — skipping review." | ||
| echo "Add it under Settings → Secrets and variables → Actions." | ||
| exit 0 | ||
| echo "has_key=false" >> "$GITHUB_OUTPUT" | ||
| else | ||
| echo "has_key=true" >> "$GITHUB_OUTPUT" | ||
| fi | ||
| env: | ||
| TENET_AI_KEY: ${{ secrets.TENET_AI_KEY }} | ||
|
|
||
| - name: Run TENET PR Review | ||
| if: steps.key_check.outputs.has_key == 'true' | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| TENET_AI_KEY: ${{ secrets.TENET_AI_KEY }} | ||
|
|
@@ -57,4 +62,4 @@ jobs: | |
| HEAD_SHA: ${{ github.event.pull_request.head.sha }} | ||
| run: | | ||
| cd .github/tenet_agent | ||
|
Contributor
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. P1: This path change is inconsistent with earlier workflow steps, which still use Prompt for AI agents |
||
| python tenet_review.py | ||
| python tenet_review.py | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.