-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
35 lines (35 loc) · 1.15 KB
/
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
32
33
34
35
name: 'weekly-update-action'
description: 'An action to create a weekly GitHub discussion.'
author: 'mamuso <mamuso@mamuso.net>'
inputs:
repo:
description: 'The repository to create the discussion in.'
default: ${{ github.repository }}
post_on:
description: 'Day of the week to post the update request.'
default: 'Mon'
advance_on:
description: 'Day of the week to advance the update request.'
remind_on:
description: 'Day of the week to remind the team to post the update.'
title:
description: 'Title of the update request.'
default: 'Weekly Update ({{date}})'
post_template:
description: 'Path to the template to use for the update request.'
default: '.github/weekly-post.md'
remind_template:
description: 'Path to the template to use for the reminder.'
default: '.github/weekly-reminder.md'
category:
description: 'Discussion category to post the update request in.'
default: 'General'
labels:
description: 'Labels that will be added to the discussion.'
default: ''
token:
required: true
description: 'Token to authenticate with GitHub'
runs:
using: 'node20'
main: 'dist/index.js'