-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
45 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
name: "Jalapeno" | ||
description: "Run Jalapeno check on the workspace" | ||
inputs: | ||
insecure: | ||
description: "Allow connections to SSL registry without certs" | ||
default: "false" | ||
required: false | ||
plain-http: | ||
description: "Allow insecure connections to registry without SSL check" | ||
default: "false" | ||
required: false | ||
ca-file: | ||
description: "Server certificate authority file for the remote registry" | ||
required: false | ||
outputs: | ||
exit-code: | ||
description: "Exit code of the operation" | ||
runs: | ||
using: "docker" | ||
image: "docker://ghcr.io/futurice/jalapeno:v0-githubaction" | ||
args: | ||
- check | ||
- --dir=/github/workspace | ||
- --detailed-exitcode | ||
- --insecure=${{ inputs.insecure }} | ||
- --plain-http=${{ inputs.plain-http }} | ||
- --ca-file=${{ inputs.ca-file }} |
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
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