From c981fbabc486e01f01e66ac3ab758fb2061a2da4 Mon Sep 17 00:00:00 2001 From: Esun Kim Date: Thu, 12 Feb 2026 10:30:30 -0800 Subject: [PATCH] Exempt TFLM-bot and dependabot from BUG= check (#3467) --- .github/workflows/check_bug_id.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_bug_id.yml b/.github/workflows/check_bug_id.yml index 1609b707..2537f146 100644 --- a/.github/workflows/check_bug_id.yml +++ b/.github/workflows/check_bug_id.yml @@ -14,7 +14,7 @@ jobs: name: Check for BUG= steps: - name: Check for BUG= - if: ${{ !contains(github.event.pull_request.body, 'BUG=') }} + if: ${{ !contains(github.event.pull_request.body, 'BUG=') && github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.user.login != 'TFLM-bot' }} run: | echo "PR description requires a BUG= line with issue number." echo "See https://testing.googleblog.com/2017/09/code-health-providing-context-with.html for additional context"