Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@
run: |
# Get changed files in PR
CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref }}...HEAD)

Check failure on line 25 in .github/workflows/pr-labeler.yml

View workflow job for this annotation

GitHub Actions / Lint YAML

25:1 [trailing-spaces] trailing spaces
LABELS=""

Check failure on line 27 in .github/workflows/pr-labeler.yml

View workflow job for this annotation

GitHub Actions / Lint YAML

27:1 [trailing-spaces] trailing spaces
# Check each action directory
if echo "$CHANGED_FILES" | grep -q "^agentic-ui-tests/"; then
LABELS="${LABELS}agentic-ui-tests,"
fi

Check failure on line 32 in .github/workflows/pr-labeler.yml

View workflow job for this annotation

GitHub Actions / Lint YAML

32:1 [trailing-spaces] trailing spaces
if echo "$CHANGED_FILES" | grep -q "^db-performance-analyzer/"; then
LABELS="${LABELS}db-performance-analyzer,"
fi

Check failure on line 36 in .github/workflows/pr-labeler.yml

View workflow job for this annotation

GitHub Actions / Lint YAML

36:1 [trailing-spaces] trailing spaces
if echo "$CHANGED_FILES" | grep -q "^dead-code-analyzer/"; then
LABELS="${LABELS}dead-code-analyzer,"
fi

Check failure on line 40 in .github/workflows/pr-labeler.yml

View workflow job for this annotation

GitHub Actions / Lint YAML

40:1 [trailing-spaces] trailing spaces
# Check for workflow changes
if echo "$CHANGED_FILES" | grep -q "^\.github/"; then
LABELS="${LABELS}ci/cd,"
Expand All @@ -56,7 +56,7 @@

- name: Add labels to PR
if: steps.changes.outputs.labels != ''
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const labels = '${{ steps.changes.outputs.labels }}'.split(',').filter(l => l);
Expand Down
Loading