Skip to content

Commit

Permalink
[TT-1782] do not run static analysis in mq (#14944)
Browse files Browse the repository at this point in the history
* do not run static analysis in merge queues

* use latest AER
  • Loading branch information
Tofel authored Oct 25, 2024
1 parent 0708332 commit 5eb6b74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/llm-action-error-reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
pull-requests: write
repository-projects: read
actions: read
steps:
steps:
- name: Analyze logs
uses: smartcontractkit/.github/actions/llm-action-error-reporter@d125ca9fe5e3b410de7c6db4a4ce3ed7a0728cd6 # v0.3.0
uses: smartcontractkit/.github/actions/llm-action-error-reporter@05ae80b1ccba5e73ce9e773983d805b13656840c # v0.4.0
with:
parent-workflow-conclusion: ${{ github.event.workflow_run.conclusion }}
skip-on-success: true # Skip posting comment if no errors are found
gh-token: ${{ github.token }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/solidity-foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
analyze:
needs: [ changes, define-matrix ]
name: Run static analysis
if: needs.changes.outputs.not_test_sol_modified == 'true'
if: needs.changes.outputs.not_test_sol_modified == 'true' && github.event_name != 'merge_group'
runs-on: ubuntu-22.04
steps:
- name: Checkout this repository
Expand Down

0 comments on commit 5eb6b74

Please sign in to comment.