From 0f3110274c4a719a770d8f641c6fc9398965277d Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Fri, 12 Dec 2025 14:28:54 -0600 Subject: [PATCH] Fix test-e2e.yml --- .github/workflows/test-e2e.yml | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index ce1a011..66d46a3 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -3,7 +3,15 @@ name: E2E Tests on: push: branches: [main] + paths-ignore: &ignore_paths + - "docs/**" + - "config/**" + - "*.md" + - ".gitignore" + - "LICENSE" + - "tests/**" pull_request: + paths-ignore: *ignore_paths repository_dispatch: types: [ok-to-test-command] @@ -93,15 +101,15 @@ jobs: - name: Create comment on PR uses: peter-evans/create-or-update-comment@v4 - with: - issue-number: ${{ github.event.client_payload.pull_request.number }} - body: | - ${{ - needs.e2e.result == 'success' && '✅ E2E tests passed.' || - needs.e2e.result == 'failure' && '❌ E2E tests failed.' || - '⚠️ E2E tests completed.' - }} + with: + issue-number: ${{ github.event.client_payload.pull_request.number }} + body: | + ${{ + needs.e2e.result == 'success' && '✅ E2E tests passed.' || + needs.e2e.result == 'failure' && '❌ E2E tests failed.' || + '⚠️ E2E tests completed.' + }} - [View test run output][1] + [View test run output][1] - [1]: ${{ steps.vars.outputs.run-url }} + [1]: ${{ steps.vars.outputs.run-url }}