generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 14
/
action.yml
28 lines (28 loc) · 894 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
name: 'Setup Foreman'
description: 'Install Foreman, a toolchain manager for Roblox projects'
author: 'The Rojo Developers'
inputs:
version:
required: false
description: 'SemVer version of Foreman to install'
working-directory:
required: false
description: 'Working directory to run `foreman install` in'
github-api-url:
required: false
description: 'GitHub API to make requests to'
token:
required: true
description: 'GitHub token from secrets.GITHUB_TOKEN'
allow-external-github-orgs:
required: false
description: 'Allow installing from external GitHub organizations'
artifactory-url:
required: false
description: 'Artifactory URL to use for downloading Foreman tools'
artifactory-token:
required: false
description: 'Artifactory token to use for downloading Foreman tools'
runs:
using: 'node16'
main: 'dist/index.js'