From 1a4f182f21c317480412bad0b5169028d3c0445a Mon Sep 17 00:00:00 2001 From: AJ Heller Date: Mon, 8 May 2023 15:20:43 -0700 Subject: [PATCH] [infra] Maybe fix the title check (#33041) `synchronized` is not a valid keyword. It's a shame this isn't reported anywhere I can see. See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows --- .github/workflows/pr-auto-tag-and-check-title.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-auto-tag-and-check-title.yaml b/.github/workflows/pr-auto-tag-and-check-title.yaml index b761fe71317..2bd85cf3034 100644 --- a/.github/workflows/pr-auto-tag-and-check-title.yaml +++ b/.github/workflows/pr-auto-tag-and-check-title.yaml @@ -1,7 +1,7 @@ name: PR Title Check & Tag on: pull_request_target: - types: [opened, reopened, synchronized, edited] + types: [opened, reopened, synchronize, edited] permissions: contents: read # to determine modified files (actions/labeler)