-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (36 loc) · 1.32 KB
/
action.yml
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
name: 'Stackaid dependency generator'
description: "Generate a stackaid.json file based on your repository's dependency graph"
author: 'Wes Carr [email protected]'
inputs:
token:
description: 'A GitHub access token. If publishing to a different repo you must provide a token with appropriate permissions'
default: ${{ github.token }}
publish_repo:
description: 'The repository to publish the stackaid.json file. Defaults to current repository'
default: ${{ github.repository }}
required: false
publish_path:
description: 'The path to publish the stackaid.json file'
default: ''
required: false
skip_publish:
description: 'If true, the stackaid.json file will not be published to the repository'
default: false
required: false
src_dir:
description: 'Source code root directory'
default: ${{ github.workspace }}
required: false
include_package_json:
description: "If true and publish_repo is different from the working repository, then package.json files will be copied to publish_repo. Use this option when you don't want StackAid to have access to your source."
default: true
required: false
outputs:
stackaid_json:
description: 'The generated stackaid.json file'
runs:
using: 'node16'
main: 'dist/action/index.js'
branding:
icon: 'layers'
color: 'orange'