From f720ebb71e2aec00e8d69d6a29698c64b89edae7 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 11 May 2021 01:29:40 -0700 Subject: [PATCH] Fix workflow path matching (#5414) @Akuli was right in https://github.com/python/typeshed/pull/5407 Co-authored-by: hauntsaninja <> --- .github/workflows/mypy_primer.yml | 2 +- .github/workflows/mypy_primer_comment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mypy_primer.yml b/.github/workflows/mypy_primer.yml index 4e14b0c97..4d00d0c75 100644 --- a/.github/workflows/mypy_primer.yml +++ b/.github/workflows/mypy_primer.yml @@ -6,7 +6,7 @@ on: # Since modular typeshed, mypy primer doesn't check third party stubs. Till that is changed, # only run it on stdlib changes to avoid false confidence and wasted CI minutes. paths: - - stdlib + - 'stdlib/**' permissions: contents: read diff --git a/.github/workflows/mypy_primer_comment.yml b/.github/workflows/mypy_primer_comment.yml index 04982e6a1..27e2bc891 100644 --- a/.github/workflows/mypy_primer_comment.yml +++ b/.github/workflows/mypy_primer_comment.yml @@ -10,7 +10,7 @@ on: # Since modular typeshed, mypy primer doesn't check third party stubs. Till that is changed, # only run it on stdlib changes to avoid false confidence and wasted CI minutes. paths: - - stdlib + - 'stdlib/**' permissions: contents: read