-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
53 lines (51 loc) · 1.3 KB
/
action.yml
File metadata and controls
53 lines (51 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: "AI Auto-Debugger"
description:
"Automatically analyzes and fixes failed GitHub Actions
workflows using AI."
author: "chirag127"
branding:
icon: "zap"
color: "orange"
inputs:
ai-provider:
description:
"AI Provider (cerebras, groq, mistral, google_gemini,
nvidia, cohere, huggingface, openrouter, github_models)"
required: false
default: "cerebras"
ai-model:
description:
"Specific LLM model to use (leave empty for provider
default)"
required: false
default: ""
ai-api-key:
description: "API Key for the chosen provider"
required: true
gh-app-id:
description: "GitHub App ID"
required: true
gh-app-private-key:
description: "GitHub App Private Key (PEM format)"
required: true
target-repo-owner:
description: "Owner of the repo to debug"
required: true
target-repo-name:
description: "Name of the repo to debug"
required: true
target-run-id:
description: "Workflow run ID to debug"
required: true
target-installation-id:
description: "GitHub App installation ID"
required: true
target-head-sha:
description: "Head SHA of the failed run"
required: true
target-branch:
description: "Branch of the failed run"
required: true
runs:
using: "node22"
main: "dist/index.js"