From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 20 May 2024 17:26:28 +0000 (+0200) Subject: [3.13] GH-119146: Don't run JIT CI on unrelated changes (GH-119226) X-Git-Tag: v3.13.0b2~184 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6b873fb54a62d2725ad38ad6d02bb63a85f605f;p=thirdparty%2FPython%2Fcpython.git [3.13] GH-119146: Don't run JIT CI on unrelated changes (GH-119226) (cherry picked from commit 5307f44fb983f2a17727fb43602f5dfa63e93311) Co-authored-by: Savannah Ostrowski Co-authored-by: Alex Waygood --- diff --git a/.github/workflows/jit.yml b/.github/workflows/jit.yml index 7152cde8f460..2ec04da16946 100644 --- a/.github/workflows/jit.yml +++ b/.github/workflows/jit.yml @@ -5,11 +5,17 @@ on: - '**jit**' - 'Python/bytecodes.c' - 'Python/optimizer*.c' + - '!Python/perf_jit_trampoline.c' + - '!**/*.md' + - '!**/*.ini' push: paths: - '**jit**' - 'Python/bytecodes.c' - 'Python/optimizer*.c' + - '!Python/perf_jit_trampoline.c' + - '!**/*.md' + - '!**/*.ini' workflow_dispatch: permissions: