Created
August 28, 2025 14:28
-
-
Save Skeyelab/c849da376bdfa367d5bba9301e60c06d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "fetch-ci-logs", | |
| "version": "1.0.0", | |
| "description": "Download GitHub Actions logs for CI workflows", | |
| "main": "fetch-ci-logs.js", | |
| "bin": { | |
| "fetch-ci-logs": "./fetch-ci-logs.js" | |
| }, | |
| "scripts": { | |
| "fetch-logs": "node fetch-ci-logs.js fetch-logs", | |
| "after-push": "node fetch-ci-logs.js after-push", | |
| "ci:fetch-logs": "node fetch-ci-logs.js fetch-logs", | |
| "ci:after-push": "node fetch-ci-logs.js after-push" | |
| }, | |
| "dependencies": { | |
| "axios": "^1.6.0" | |
| }, | |
| "keywords": [ | |
| "github", | |
| "actions", | |
| "ci", | |
| "logs", | |
| "automation" | |
| ], | |
| "author": "Your Name", | |
| "license": "MIT" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment