Skip to content

Commit

Permalink
Add manifest-path variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Feb 13, 2024
1 parent 5def368 commit ecee678
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ inputs:
description: "The arguments to pass to the command"
required: false
default: ""
manifest-path:
description: "Repo root relative path to the Cargo manifest to check"
required: false
default: "Cargo.toml"
log-level:
description: "The log level for cargo-deny"
required: false
Expand All @@ -40,6 +44,8 @@ runs:
- ${{ inputs.credentials }}
- --log-level
- ${{ inputs.log-level }}
- --manifest-path
- ${{ inputs.manifest-path }}
- ${{ inputs.arguments }}
- ${{ inputs.command }}
- ${{ inputs.command-arguments }}

0 comments on commit ecee678

Please sign in to comment.