Skip to content

Commit b27f664

Browse files
authored
Update action.yml
1 parent cf42d24 commit b27f664

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

action.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
name: 'sbt-dependency-graph-action'
2-
description: 'Submit the dependency graph of an sbt build to the Github Dependency API'
2+
description: 'Submits the dependency graph of an sbt build to the Github Submission API'
33
author: 'The Scala Center'
44
branding:
55
icon: 'package'
66
color: '#1a84ac'
7+
inputs:
8+
base-dir:
9+
description: "The relative path of the base directory of the sbt build."
10+
required: false
11+
default: ''
12+
projects:
13+
description: "A list of space-separated names of projects from your build. The action will publish the graph of these projects only. Default is the empty string and it means all projects."
14+
required: false
15+
default: ''
16+
scala-versions:
17+
description: "A list of space-separated versions of Scala, that are declared in your build. The action will publish the graph on these Scala versions only. Defaulat is the empty string and it means all Scala versions."
18+
required: false
19+
default: ''
720
runs:
821
using: 'node16'
922
main: 'dist/index.js'

0 commit comments

Comments
 (0)