Skip to content

Commit 6ed5c82

Browse files
Merge branch 'main' into fix-typos
2 parents 82ba92f + 6d232b4 commit 6ed5c82

20 files changed

Lines changed: 113 additions & 82 deletions

.github/update-release-branch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def get_pr_for_commit(repo, commit):
123123
if prs.totalCount > 0:
124124
# In the case that there are multiple PRs, return the earliest one
125125
prs = list(prs)
126-
sorted(prs, key=lambda pr: int(pr.number))
127-
return prs[0]
126+
sorted_prs = sorted(prs, key=lambda pr: int(pr.number))
127+
return sorted_prs[0]
128128
else:
129129
return None
130130

.github/workflows/integration-testing.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,8 @@ jobs:
466466
runner-upload-sarif:
467467
runs-on: ubuntu-latest
468468

469+
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.base.repo.id == github.event.pull_request.head.repo.id }}
470+
469471
steps:
470472
- uses: actions/checkout@v2
471473

lib/actions-util.js

Lines changed: 38 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)