Files
fetch-metadata/action.yml
2021-05-28 15:49:53 +01:00

19 lines
743 B
YAML

name: 'Fetch Metadata from Dependabot PRs'
description: 'Extract information from about the dependency being updated by a Dependabot-generated PR'
inputs:
github-token:
description: 'The GITHUB_TOKEN secret'
required: true
outputs:
dependency-names:
description: 'A comma-separated list of all package names updated.'
dependency-type:
description: 'The type of dependency has determined this PR to be, e.g. "direct:production".'
update-type:
description: 'The highest semvver change being made by this PR, e.g. "version-update:semver-major"'
updated-dependencies-json:
description: 'A JSON string containing the full information about each updated Dependency.'
runs:
using: 'node12'
main: 'dist/index.js'