generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
31 lines (26 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
27
28
29
30
31
name: Cleanup stale branches
description: Simple action for deleting stale branches
author: Balvajs
branding:
icon: git-branch
color: orange
inputs:
days-to-delete:
required: false
description: Number of days without activity after which the branch will be deleted. Default is 90 days.
default: '90'
dry-run:
required: false
description: If set to true, the action will only log the branches that would be deleted, but will not delete them. Default is true.
default: 'true'
repository:
required: false
description: Repository name and owner in format owner/repo. Default is current repository.
default: ${{ github.repository }}
token:
required: false
description: GitHub token. Default is github.token
default: ${{ github.token }}
runs:
using: 'node20'
main: 'dist/main.cjs'