-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from dependabot/brrygrdn/output-single-dependency
Clarify action naming, add usage examples for actions + gh cli
- Loading branch information
Showing
12 changed files
with
901 additions
and
8,421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
name: 'Dependabot PR Automation' | ||
description: 'Parse Dependabot commit metadata to automate PR handling' | ||
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: | ||
updated-dependencies: | ||
description: 'A JSON serialised hash of any metadata found in verified Dependabot commits in the PR.' | ||
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 semver 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' |
Oops, something went wrong.