2020-05-03 20:46:05 +02:00
|
|
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
|
|
name: 'Import GPG'
|
2020-05-07 20:42:27 +02:00
|
|
|
description: 'GitHub Action to easily import a GPG key'
|
2020-05-03 20:46:05 +02:00
|
|
|
author: 'crazy-max'
|
|
|
|
branding:
|
2020-05-03 22:08:18 +02:00
|
|
|
color: 'yellow'
|
|
|
|
icon: 'lock'
|
2020-05-03 20:46:05 +02:00
|
|
|
|
2020-05-04 20:59:11 +02:00
|
|
|
inputs:
|
2021-09-05 01:12:28 +02:00
|
|
|
gpg_private_key:
|
2020-09-06 22:03:16 +02:00
|
|
|
description: 'GPG private key exported as an ASCII armored version or its base64 encoding'
|
|
|
|
required: true
|
|
|
|
passphrase:
|
|
|
|
description: 'Passphrase of the GPG private key'
|
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_config_global:
|
2021-08-10 09:28:13 +02:00
|
|
|
description: 'Set Git config global'
|
|
|
|
default: 'false'
|
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_user_signingkey:
|
2020-05-06 01:21:41 +02:00
|
|
|
description: 'Set GPG signing keyID for this Git repository'
|
|
|
|
default: 'false'
|
2020-05-07 20:42:27 +02:00
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_commit_gpgsign:
|
2021-09-05 01:29:51 +02:00
|
|
|
description: 'Sign all commits automatically'
|
2020-05-06 01:21:41 +02:00
|
|
|
default: 'false'
|
2020-05-07 20:42:27 +02:00
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_tag_gpgsign:
|
2021-09-05 01:29:51 +02:00
|
|
|
description: 'Sign all tags automatically'
|
2020-05-06 01:21:41 +02:00
|
|
|
default: 'false'
|
2020-05-07 20:42:27 +02:00
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_push_gpgsign:
|
2021-09-05 01:29:51 +02:00
|
|
|
description: 'Sign all pushes automatically'
|
2021-08-10 08:46:50 +02:00
|
|
|
default: 'if-asked'
|
2020-05-07 20:42:27 +02:00
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_committer_name:
|
2020-05-05 20:01:45 +02:00
|
|
|
description: 'Commit author''s name'
|
2020-05-07 20:42:27 +02:00
|
|
|
required: false
|
2021-09-05 01:12:28 +02:00
|
|
|
git_committer_email:
|
2020-05-05 20:01:45 +02:00
|
|
|
description: 'Commit author''s email'
|
2020-05-07 20:42:27 +02:00
|
|
|
required: false
|
2020-08-28 16:30:49 -04:00
|
|
|
workdir:
|
|
|
|
description: 'Working directory (below repository root)'
|
|
|
|
default: '.'
|
|
|
|
required: false
|
2021-10-15 13:40:04 +02:00
|
|
|
fingerprint:
|
|
|
|
description: 'Specific fingerprint to use (subkey)'
|
|
|
|
required: false
|
2020-05-07 20:42:27 +02:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
fingerprint:
|
|
|
|
description: 'Fingerprint of the GPG key (recommended as user ID)'
|
|
|
|
keyid:
|
|
|
|
description: 'Low 64 bits of the X.509 certificate SHA-1 fingerprint'
|
2022-12-02 16:49:30 +09:00
|
|
|
name:
|
|
|
|
description: 'Name associated with the GPG key'
|
2020-05-07 20:42:27 +02:00
|
|
|
email:
|
|
|
|
description: 'Email address associated with the GPG key'
|
2020-05-04 20:59:11 +02:00
|
|
|
|
2020-05-03 20:46:05 +02:00
|
|
|
runs:
|
2022-05-26 10:52:02 +02:00
|
|
|
using: 'node16'
|
2020-05-03 20:46:05 +02:00
|
|
|
main: 'dist/index.js'
|
|
|
|
post: 'dist/index.js'
|