Skip to content

Commit

Permalink
repo-gardening: Fix ignoring of update/phan-custom-stubs PRs (#36922)
Browse files Browse the repository at this point in the history
These come in with author as "github-actions[bot]", not "matticbot".
  • Loading branch information
anomiex authored Apr 16, 2024
1 parent 3d714eb commit 4563f00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: changed
Comment: Follow-up to #36830, no need for a separate changelog entry.


Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ async function checkDescription( payload, octokit ) {

if (
( ref === 'update/phan-wpcom-stubs' || ref === 'update/phan-custom-stubs' ) &&
author === 'matticbot'
( author === 'matticbot' || author === 'github-actions[bot]' )
) {
debug( `check-description: Automated stub update, skipping` );
return;
Expand Down

0 comments on commit 4563f00

Please sign in to comment.