Run CI when CI infra itself has changed. (#10239)

Make sure that changes to CI infrastructure get tested on CI before
being merged.

Without this PR, changes to the poetry setup action don't trigger a CI
run and in principle could break `master` when merged.
This commit is contained in:
Predrag Gruevski 2023-09-05 13:08:19 -04:00 committed by GitHub
parent c8d7ee62ba
commit 803be5b986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,8 @@ on:
branches: [ master ] branches: [ master ]
pull_request: pull_request:
paths: paths:
- '.github/actions/poetry_setup/action.yml'
- '.github/tools/**'
- '.github/workflows/_lint.yml' - '.github/workflows/_lint.yml'
- '.github/workflows/_test.yml' - '.github/workflows/_test.yml'
- '.github/workflows/_pydantic_compatibility.yml' - '.github/workflows/_pydantic_compatibility.yml'

View File

@ -6,6 +6,8 @@ on:
branches: [ master ] branches: [ master ]
pull_request: pull_request:
paths: paths:
- '.github/actions/poetry_setup/action.yml'
- '.github/tools/**'
- '.github/workflows/_lint.yml' - '.github/workflows/_lint.yml'
- '.github/workflows/_test.yml' - '.github/workflows/_test.yml'
- '.github/workflows/langchain_experimental_ci.yml' - '.github/workflows/langchain_experimental_ci.yml'