-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
37 lines (33 loc) · 1.01 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
36
37
name: Close Stale Issues
description: Close issues certain days after a stale label has been added
author: Directus
branding:
icon: calendar
color: red
inputs:
github-token:
required: true
description: GitHub token with read access and issue update access to github-repo
default: ${{ github.token }}
github-repo:
required: true
description: GitHub `owner/repository` for which stale issues are paused
default: ${{ github.repository }}
stale-label:
required: true
description: Label which marks an issue as stale
days-before-close:
required: true
description: Days before an issue is closed after the stale label has been added to it
close-comment:
required: true
description: Comment which will be added to issues when closing
dry-run:
description: Run the action without effectively closing stale issues
default: 'false'
outputs:
closed-issues:
description: List with numbers of all issues that have been closed
runs:
using: node20
main: dist/index.js