Skip to content

Commit a410b40

Browse files
authored
Add action types (#257)
1 parent 4d64c5e commit a410b40

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

.github/workflows/action-types.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Validate action typings
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
validate-typings:
10+
runs-on: "ubuntu-latest"
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: krzema12/github-actions-typing@v0

action-types.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
inputs:
2+
api-level:
3+
type: integer
4+
target:
5+
type: enum
6+
allowed-values:
7+
- default
8+
- google_apis
9+
- google_apis_playstore
10+
- aosp_atd
11+
- google_atd
12+
- android-wear
13+
- android-wear-cn
14+
- android-tv
15+
- google-tv
16+
arch:
17+
type: enum
18+
allowed-values:
19+
- x86
20+
- x86_64
21+
- arm64-v8a
22+
profile:
23+
type: string
24+
cores:
25+
type: integer
26+
ram-size:
27+
type: string
28+
heap-size:
29+
type: string
30+
sdcard-path-or-size:
31+
type: string
32+
disk-size:
33+
type: string
34+
avd-name:
35+
type: string
36+
force-avd-creation:
37+
type: boolean
38+
emulator-options:
39+
type: string
40+
disable-animations:
41+
type: boolean
42+
disable-spellchecker:
43+
type: boolean
44+
disable-linux-hw-accel:
45+
type: string
46+
enable-hw-keyboard:
47+
type: boolean
48+
emulator-build:
49+
type: string
50+
working-directory:
51+
type: string
52+
ndk:
53+
type: string
54+
cmake:
55+
type: string
56+
channel:
57+
type: enum
58+
allowed-values:
59+
- stable
60+
- beta
61+
- dev
62+
- canary
63+
script:
64+
type: string

0 commit comments

Comments
 (0)