gpg/action.yml

21 lines
543 B
YAML

# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'Import GPG'
description: 'GitHub Action to easily import your GPG key to sign commits and tags'
author: 'crazy-max'
branding:
color: 'yellow'
icon: 'lock'
inputs:
git_gpgsign:
description: 'Enable signing for this Git repository'
default: 'false'
git_committer_name:
description: 'Commit author''s name'
git_committer_email:
description: 'Commit author''s email'
runs:
using: 'node12'
main: 'dist/index.js'
post: 'dist/index.js'