Make refs inputs as well

This commit is contained in:
Klaus Hartl 2021-09-19 08:30:08 +02:00
parent cd80931011
commit 523d06cb74
No known key found for this signature in database
GPG key ID: 6BA8AED91AB6EA2A

View file

@ -1,10 +1,18 @@
name: "Detect secrets with Talisman"
description: "Scan an incoming range of commits for accidentally added secrets and sensitive information"
inputs:
local-ref:
description: "Ref pushed from"
required: false
default: refs/heads/main
local-sha:
description: "The latest of the incoming commits"
required: false
default: ${{ github.event.after }}
remote-ref:
description: "Ref that was updated"
required: false
default: refs/heads/main
remote-sha:
description: "The latest commit on the remote being pushed to"
required: false
@ -13,4 +21,4 @@ runs:
using: "docker"
image: "Dockerfile"
args:
- refs/heads/main ${{ inputs.local-sha }} refs/heads/main ${{ inputs.remote-sha }}
- ${{ inputs.local-ref }} ${{ inputs.local-sha }} ${{ inputs.remote-ref }} ${{ inputs.remote-sha }}