Skip to content

Commit a1fab6b

Browse files
committed
Fix?
1 parent 313a540 commit a1fab6b

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
- uses: actions/download-artifact@v7
4949
- uses: ./
5050
with:
51-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5251
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
5352
RUN_ID: ${{ github.run_id }}
5453
STEP_REGEX: build-.*

action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ author: yaito3014
33
description: Notifies about C++ warnings in GitHub Actions
44

55
inputs:
6-
GITHUB_TOKEN:
7-
required: true
86
PRIVATE_KEY:
97
required: true
108
JOB_REGEX:

dist/index.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ for (const job of jobList.jobs) {
5656
});
5757

5858
const response = await fetch(redirectUrl);
59+
if (!response.ok) console.log(`failed to retrieve job log for ${job_id}`);
5960
const jobLog = await response.text();
6061

6162
const warningRegex = /warning( .\d+)?:/;

0 commit comments

Comments
 (0)