From 93c7ebfed4124771786d9317bf0bc70597b94099 Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Wed, 13 Mar 2024 06:08:04 -0300 Subject: [PATCH] exclude gglobalstep from community contributors automation (#45492) Co-authored-by: Ron Rennick --- .github/workflows/scripts/is-community-contributor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/is-community-contributor.js b/.github/workflows/scripts/is-community-contributor.js index 4ac92674981..0ce4bcf8936 100644 --- a/.github/workflows/scripts/is-community-contributor.js +++ b/.github/workflows/scripts/is-community-contributor.js @@ -6,7 +6,7 @@ const core = require( '@actions/core' ); // this won't work. const octokit = new Octokit(); -const ignoredUsernames = [ 'dependabot[bot]' ]; +const ignoredUsernames = [ 'dependabot[bot]', 'gglobalstep' ]; const checkIfIgnoredUsername = ( username ) => ignoredUsernames.includes( username );