Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
medmes committed Feb 3, 2025
1 parent e19d8bc commit d981bc5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/check-configs-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ jobs:
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
});
const configFiles = files.filter(file =>
file.filename.startsWith('config/') ||
file.filename.startsWith('e2e/') ||
file.filename.startsWith('scripts/tests/'));
const configFiles = files.filter(file => file.filename.startsWith('config/') || file.filename.startsWith('e2e/'));
core.setOutput('configFiles', configFiles.map(file => file.filename).join(','));
- name: Evaluate Config Changes
Expand Down

0 comments on commit d981bc5

Please sign in to comment.