Skip to content

Commit 2300699

Browse files
committed
fix: drop empty HTTP/2 statusText from scraper failure summary
1 parent 1bf5ca6 commit 2300699

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v7
1414

15-
- name: Set Node.js 20.x
15+
- name: Set Node.js
1616
uses: actions/setup-node@v7
1717
with:
1818
node-version-file: .nvmrc

plugins/trigger-algolia-scraper/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ export const onSuccess = async ({ utils }) => {
5555
);
5656
utils.status.show({
5757
title: "Algolia scraper trigger failed",
58-
summary: `GitHub API responded with ${response.status} ${response.statusText}.`,
58+
summary: `GitHub API responded with status ${response.status}. See build log for details.`,
5959
});
6060
};

0 commit comments

Comments
 (0)