We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8724d3a commit 081da37Copy full SHA for 081da37
.github/workflows/api-surface-area-review-verification.yml
@@ -21,7 +21,7 @@ jobs:
21
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-api-surface-area-change') }}
22
run: |
23
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)
+ 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)
25
if [ -n "$FILES" ]; then
26
echo "::error::Changes around protected/public APIs found:"
27
echo "$FILES" | while read file; do
0 commit comments