From d0118a40685dfa203289e44092055e649040eed2 Mon Sep 17 00:00:00 2001 From: Michaela Robosova Date: Fri, 7 Feb 2025 13:17:39 +0100 Subject: [PATCH] Fix the action not updating some data in the contributions tracking sheet. Fixes the spreadsheet's 'Assignees', 'Reviewers', and 'Merged' columns not being updated due to the action not being triggered. Also removes 'issue_comment' event since I don't need it anymore in the spreadsheet. --- .github/workflows/update-pr-spreadsheet.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-pr-spreadsheet.yml b/.github/workflows/update-pr-spreadsheet.yml index b7e31f0..8411239 100644 --- a/.github/workflows/update-pr-spreadsheet.yml +++ b/.github/workflows/update-pr-spreadsheet.yml @@ -1,5 +1,7 @@ name: Update community pull requests spreadsheet -on: [pull_request_target, issue_comment] +on: + pull_request_target: + types: [assigned,unassigned,opened,closed,reopened] jobs: call-update-spreadsheet: