Skip to content

Commit

Permalink
Update Radon analysis workflow to use the correct base branch for rep…
Browse files Browse the repository at this point in the history
…orting
  • Loading branch information
josephmancuso committed Nov 20, 2024
1 parent 12a2132 commit c3e3ce7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/radon-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
run: pip install radon
- name: Create Radon's reports
run: |
radon cc $(git diff --name-only origin/HEAD) -j >cc.json
radon mi $(git diff --name-only origin/HEAD) -j >mi.json
radon hal $(git diff --name-only origin/HEAD) -j >hal.json
radon cc $(git diff --name-only origin/2.0) -j >cc.json
radon mi $(git diff --name-only origin/2.0) -j >mi.json
radon hal $(git diff --name-only origin/2.0) -j >hal.json
- name: Comment the results on the PR
uses: Libra-foundation/[email protected]
with:
Expand Down

0 comments on commit c3e3ce7

Please sign in to comment.