ssh-agent/action.yml
Shaun Cooley d561d1a80b Adding repo-mappings and drop-extra-header options
Updated README.md to include the two new options
Fixed build.js to work on windows
Fixed homedir lookup for windows
Moved param names to const vars at the top and replaced all references
2020-11-25 01:30:49 -08:00

23 lines
749 B
YAML

name: 'webfactory/ssh-agent'
description: 'Run `ssh-agent` and load an SSH key to access other private repositories'
inputs:
ssh-private-key:
description: 'Private SSH key to register in the SSH agent'
required: true
repo-mappings:
description: 'Git Repo Mappings, order and count must match ssh-private-key'
required: false
ssh-auth-sock:
description: 'Where to place the SSH Agent auth socket'
required: false
drop-extra-header:
description: 'Remove the .gitconfig http.extraheader auth token added by actions/checkout@v2'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
post: 'dist/cleanup.js'
branding:
icon: loader
color: 'yellow'