Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Ignoring docs, community, and example paths during PR tests #4567

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
4 changes: 4 additions & 0 deletions .github/workflows/java_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: java_pr

on:
pull_request_target:
paths-ignore:
- 'community/**'
- 'docs/**'
- 'examples/**'
types:
- opened
- synchronize
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: lint-pr

on:
pull_request_target:
paths-ignore:
- 'community/**'
- 'docs/**'
- 'examples/**'
types:
- opened
- edited
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
name: linter

on: [push, pull_request]

on:
push:
paths-ignore:
- 'community/**'
- 'docs/**'
- 'examples/**'
pull_request:
- 'community/**'
franciscojavierarceo marked this conversation as resolved.
Show resolved Hide resolved
- 'docs/**'
- 'examples/**'
jobs:
lint-python:
runs-on: [ubuntu-latest]
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/smoke_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: smoke-tests

on: [pull_request]
on:
pull_request_target:
franciscojavierarceo marked this conversation as resolved.
Show resolved Hide resolved
paths-ignore:
paths-ignore:
- 'community/**'
- 'docs/**'
- 'examples/**'

jobs:
unit-test-python:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -35,4 +42,4 @@ jobs:
- name: Install dependencies
run: make install-python-dependencies-uv
- name: Test Imports
run: python -c "from feast import cli"
run: python -c "from feast import cli"
6 changes: 5 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: unit-tests

on: [pull_request]
on: pull_request
paths-ignore:
- 'community/**'
- 'docs/**'
- 'examples/**'
jobs:
unit-test-python:
runs-on: ${{ matrix.os }}
Expand Down
Loading