Read a field of a ROW column by descending it #2197
Workflow file for this run
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
| --- | ||
|
Check warning on line 1 in .github/workflows/pr_review.yml
|
||
| name: PR Review | ||
| on: | ||
| pull_request_target: | ||
| types: [opened, synchronize, reopened] | ||
| jobs: | ||
| Code-Diff-Analyzer: | ||
| uses: opensearch-project/opensearch-build/.github/workflows/code-diff-analyzer.yml@761e093b8c1349cc07f21c1d681d3b30bf9e1999 # main | ||
| if: github.repository == 'opensearch-project/sql' | ||
| permissions: | ||
| id-token: write # github oidc to assume aws roles | ||
| pull-requests: write # to create or update comment (peter-evans/create-or-update-comment) | ||
| secrets: | ||
| BEDROCK_ACCESS_ROLE: ${{ secrets.BEDROCK_ACCESS_ROLE }} | ||
| with: | ||
| skip_diff_analyzer_with_label_name: 'skip-diff-analyzer' | ||
| update_pr_comment_with_analyzer_report: true | ||
| Code-Diff-Reviewer: | ||
| uses: opensearch-project/opensearch-build/.github/workflows/code-diff-reviewer.yml@761e093b8c1349cc07f21c1d681d3b30bf9e1999 # main | ||
| needs: Code-Diff-Analyzer | ||
| if: github.repository == 'opensearch-project/sql' | ||
| permissions: | ||
| id-token: write # github oidc to assume aws roles | ||
| pull-requests: write # to create or update comment (peter-evans/create-or-update-comment) | ||
| secrets: | ||
| BEDROCK_ACCESS_ROLE: ${{ secrets.BEDROCK_ACCESS_ROLE }} | ||
| with: | ||
| skip_diff_reviewer_with_label_name: 'skip-diff-reviewer' | ||