From 1ad87efcfa7c7443cbc5d69f3fe2db29efcc7072 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 26 Jul 2023 03:53:59 -0700 Subject: [PATCH] Let check-for-reproducer run only on newly created issues. (#38634) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/38634 To reduce the noise of the `check-for-reproducer` bot, this restricts the event that trigger the bot to only the issue creation. Changelog: [Internal] [Changed] - Let check-for-reproducer run only on newly created issues Reviewed By: cipolleschi Differential Revision: D47792374 fbshipit-source-id: 738a9342899e234022029e94f43b0dccebc21819 --- .github/workflows/check-for-reproducer.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/check-for-reproducer.yml b/.github/workflows/check-for-reproducer.yml index 8ef450fc1aea74..36dc6200217c8f 100644 --- a/.github/workflows/check-for-reproducer.yml +++ b/.github/workflows/check-for-reproducer.yml @@ -3,9 +3,7 @@ name: Check for reproducer # Also, when a comment is added, edited or deleted. on: issues: - types: [opened, edited] - issue_comment: - types: [created, edited, deleted] + types: [opened] jobs: check-for-reproducer: