-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
26 lines (25 loc) · 844 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# action.yml
name: 'gistblog'
description: 'Blog your little heart out using GitHub Gists and Markdown.'
inputs:
# For information on how to create a Personal Access Token in GitHub see:
# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token
gists-token:
description: 'A valid GitHub Personal Access Token with "gist" scope.'
required: true
default: ''
operation:
description: 'The operation to perform either "create" or "update".'
required: true
default: ''
blog-files:
description: 'A space delimited list of files to process.'
required: true
default: ''
runs:
using: 'docker'
image: 'docker://ghcr.io/seajoshc/gistblog:v1'
args:
- ${{ inputs.gists-token }}
- ${{ inputs.operation }}
- ${{ inputs.blog-files }}