You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Generate a stackaid.json file based on your repository's dependency graph"
author: 'Wes Carr wescarr@gmail.com'
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."