generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
25 lines (25 loc) · 814 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
name: 'Retro Creator'
description: 'Create retro boards automagically on a schedule'
author: 'hross'
inputs:
repo-token:
description: 'Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.'
required: true
handles:
description: 'List of handles to use the in the retro, comma separated'
required: true
retro-cadence-weeks:
description: 'How often are your retros, in weeks?'
default: 1
retro-day-of-week:
description: 'The day of the week to schedule a retro on. Default is Friday.'
default: 5
retro-repo:
description: 'Repository to create the retro in.'
default: ''
only-log:
description: 'Run in text output only mode. Do not actually create a retro board/issue.'
default: false
runs:
using: 'node12'
main: 'dist/index.js'