There was an error while loading. Please reload this page.
1 parent 3ad816f commit d07c157Copy full SHA for d07c157
1 file changed
.github/workflows/pr_checks.yml
@@ -27,6 +27,15 @@ jobs:
27
cli: ${{ steps.filter.outputs.cli }}
28
sdk: ${{ steps.filter.outputs.sdk }}
29
steps:
30
+ # Merge queue events use Git to compare the synthetic merge commit with
31
+ # its captured base, while pull request events use the GitHub API.
32
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
33
+ if: github.event_name == 'merge_group'
34
+ with:
35
+ fetch-depth: 20
36
+ filter: blob:none
37
+ persist-credentials: false
38
+
39
# `code` uses `every` semantics so the negation patterns actually subtract.
40
# With the default `some` quantifier, `**` matches every file and the
41
# subsequent `!...` patterns are no-ops (each pattern is OR'd, not AND'd).
0 commit comments