-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
31 lines (31 loc) · 899 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
27
28
29
30
31
# action.yml
name: 'Generate First Issues Interface'
description: 'Create an interface for good first issues for a list of repos.'
branding:
icon: 'book-open'
color: 'blue'
inputs:
repos-file:
description: 'The relative path in the repository for the repos.txt'
required: true
default: 'repos.txt'
collection:
description: 'The relative path in docs for the collection folder to output to'
required: true
default: '_issues'
label:
description: 'The label to generate an interface for'
required: true
default: 'good first issue'
token:
description: >
Auth token used to fetch the repository.
default: ${{ github.token }}
runs:
using: 'docker'
image: 'Dockerfile'
env:
REPOS_FILE: ${{ inputs.repos-file }}
GITHUB_TOKEN: ${{ inputs.token }}
ISSUE_LABEL: ${{ inputs.label }}
COLLECTION_FOLDER: ${{ inputs.collection }}