-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (31 loc) · 876 Bytes
/
action.yml
File metadata and controls
33 lines (31 loc) · 876 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: 'Commit Coach'
description: 'Intelligent commit analysis tool providing insights for code changes, security issues, and test coverage.'
author: 'Stephen Way'
branding:
icon: 'eye'
color: 'blue'
inputs:
github-token:
description: 'GitHub token for API access'
required: true
config-path:
description: 'Path to commit-coach configuration file'
required: false
default: '.commit-coach.yml'
commit-hash:
description: 'Specific commit hash to analyze (defaults to current commit)'
required: false
pr-number:
description: 'Pull request number (auto-detected if not provided)'
required: false
comment:
description: 'Post comment on PR'
required: false
default: 'true'
status-check:
description: 'Create status check'
required: false
default: 'true'
runs:
using: 'node24'
main: 'dist/action.cjs'