Skip to content

Commit 081da37

Browse files
authored
Exclude release-scripts and scripts folder (#6266)
1 parent 8724d3a commit 081da37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/api-surface-area-review-verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-api-surface-area-change') }}
2222
run: |
2323
git fetch origin ${{ github.base_ref }} --depth 1
24-
FILES=$( git diff remotes/origin/${{ github.base_ref }} --name-only | grep "\.java$" | grep -v -E "(^|/)(internal|test|codegen|v2-migration|it)/" || true)
24+
FILES=$( git diff remotes/origin/${{ github.base_ref }} --name-only | grep "\.java$" | grep -v -E "(^|/)(internal|test|codegen|codegen-lite|v2-migration|it|release-scripts|scripts)/" || true)
2525
if [ -n "$FILES" ]; then
2626
echo "::error::Changes around protected/public APIs found:"
2727
echo "$FILES" | while read file; do

0 commit comments

Comments
 (0)