generated from austenstone/action-typescript
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (24 loc) · 688 Bytes
/
action.yml
File metadata and controls
25 lines (24 loc) · 688 Bytes
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: Get Organization Repository Names
author: Austen Stone
description: Get all an organization's repository names to do matrix builds.
branding:
icon: "list"
color: "green"
inputs:
github-token:
description: The GitHub token used to create an authenticated client.
default: ${{ github.token }}
required: false
org:
description: The org to get names from.
default: ${{ github.event.organization.login }}
required: false
topic-filter:
description: The name of the topic to filter on.
required: false
delimiter:
description: The delimiter to use when returning a string.
required: false
runs:
using: "node16"
main: "dist/index.js"