From f2e1775c200de506e9bb651cd9726e1d0913034f Mon Sep 17 00:00:00 2001 From: Robin van Boven <497556+Beanow@users.noreply.github.com> Date: Fri, 29 Nov 2019 11:40:37 +0100 Subject: [PATCH] Add github-actions bot (#1466) See https://github.com/sourcecred/sourcecred-action/pull/6 as an example of the bot acting as a user. --- src/plugins/github/blacklistedObjectIds.js | 1 + src/plugins/github/bots.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/plugins/github/blacklistedObjectIds.js b/src/plugins/github/blacklistedObjectIds.js index 0a554d0..014ea1a 100644 --- a/src/plugins/github/blacklistedObjectIds.js +++ b/src/plugins/github/blacklistedObjectIds.js @@ -60,6 +60,7 @@ export const BLACKLISTED_IDS: $ReadOnlyArray = deepFreeze([ "MDM6Qm90Mjk5NjY3OTc=", // eslint "MDM6Qm90Mjc4NTYyOTc=", // dependabot-preview "MDM6Qm90MzY3NzE0MDE=", // azure-pipelines + "MDM6Qm90NDE4OTgyODI=", // github-actions // Problematic interactions they did as a user: reactions. "MDg6UmVhY3Rpb24yMTY3ODkyNQ==", diff --git a/src/plugins/github/bots.js b/src/plugins/github/bots.js index 0923947..bc7c22e 100644 --- a/src/plugins/github/bots.js +++ b/src/plugins/github/bots.js @@ -19,5 +19,6 @@ export function botSet(): Set { "tensorflow-gardener", "tensorflow-jenkins", "tensorflowbutler", + "github-actions", ]); }