-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (30 loc) · 851 Bytes
/
action.yml
File metadata and controls
33 lines (30 loc) · 851 Bytes
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
name: 'FixGraph'
description: 'Search FixGraph for verified fixes when your build fails'
branding:
icon: 'search'
color: 'blue'
inputs:
error:
description: 'Error message or build output to search for'
required: false
github-token:
description: 'GitHub token for posting PR comments'
required: false
default: ${{ github.token }}
fixgraph-key:
description: 'FixGraph API key (optional, enables write access)'
required: false
max-results:
description: 'Maximum number of results to show'
required: false
default: '3'
outputs:
fix-found:
description: 'Whether a fix was found (true/false)'
value: ${{ steps.search.outputs.fix-found }}
fix-url:
description: 'URL of the best matching fix'
value: ${{ steps.search.outputs.fix-url }}
runs:
using: 'node20'
main: 'dist/index.js'