From 1cf71a251da68058195d1479710b20bcc68b390e Mon Sep 17 00:00:00 2001 From: Tim Lee Date: Wed, 27 Aug 2025 12:45:04 -0600 Subject: [PATCH] Fix FMA update PR name filter (#32338) --- .github/workflows/ingest-maintained-apps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ingest-maintained-apps.yml b/.github/workflows/ingest-maintained-apps.yml index 10ed01b2df..97d3ca1034 100644 --- a/.github/workflows/ingest-maintained-apps.yml +++ b/.github/workflows/ingest-maintained-apps.yml @@ -66,7 +66,7 @@ jobs: state: 'open', per_page: 100 }); - return pullRequests.filter(pr => pr.title.includes('Update Fleet-maintained apps') && pr.user.login === 'github-actions[bot]').map(pr => pr.number); + return pullRequests.filter(pr => pr.title.includes('Update Fleet-maintained apps') && pr.user.login === 'fleet-release').map(pr => pr.number); - name: Get Assignee IDs id: get_assignee_ids