From 9ec3285f90f8934286d7cfbbf2de5e38c13ea10b Mon Sep 17 00:00:00 2001 From: s2ongmo Date: Fri, 1 May 2026 14:19:29 +0900 Subject: [PATCH] ci: add approval-gate dependency to call-check-tflite-files The call-check-tflite-files job was missing the needs: [gatekeeper, approval-gate] dependency that all other test jobs in pr_test.yml have. This makes its gating consistent with call-core, call-windows, call-cortex-m, call-xtensa, call-hexagon, and call-riscv. The called workflow check_tflite_files.yml runs tensorflow/lite/micro/tools/ci_build/check_tflite_files.sh after checking out the PR head SHA, so it should be subject to the same approval gate as the other jobs that execute PR-controlled code. --- .github/workflows/pr_test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index 48a2d91a83b..2140cef71aa 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -64,6 +64,8 @@ jobs: run: echo "CI Authorized." call-check-tflite-files: + needs: [gatekeeper, approval-gate] + if: needs.gatekeeper.outputs.scope != 'none' uses: ./.github/workflows/check_tflite_files.yml with: trigger-sha: ${{ github.event.pull_request.head.sha }}