From a410b40679583e6c48709e28b6aae2c9e335b90e Mon Sep 17 00:00:00 2001 From: Leonardo Colman Date: Sat, 13 Aug 2022 21:22:48 -0300 Subject: [PATCH] Add action types (#257) --- .github/workflows/action-types.yml | 13 ++++++ action-types.yml | 64 ++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 .github/workflows/action-types.yml create mode 100644 action-types.yml diff --git a/.github/workflows/action-types.yml b/.github/workflows/action-types.yml new file mode 100644 index 00000000..90f96915 --- /dev/null +++ b/.github/workflows/action-types.yml @@ -0,0 +1,13 @@ +name: Validate action typings + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + validate-typings: + runs-on: "ubuntu-latest" + steps: + - uses: actions/checkout@v3 + - uses: krzema12/github-actions-typing@v0 diff --git a/action-types.yml b/action-types.yml new file mode 100644 index 00000000..6299ab96 --- /dev/null +++ b/action-types.yml @@ -0,0 +1,64 @@ +inputs: + api-level: + type: integer + target: + type: enum + allowed-values: + - default + - google_apis + - google_apis_playstore + - aosp_atd + - google_atd + - android-wear + - android-wear-cn + - android-tv + - google-tv + arch: + type: enum + allowed-values: + - x86 + - x86_64 + - arm64-v8a + profile: + type: string + cores: + type: integer + ram-size: + type: string + heap-size: + type: string + sdcard-path-or-size: + type: string + disk-size: + type: string + avd-name: + type: string + force-avd-creation: + type: boolean + emulator-options: + type: string + disable-animations: + type: boolean + disable-spellchecker: + type: boolean + disable-linux-hw-accel: + type: string + enable-hw-keyboard: + type: boolean + emulator-build: + type: string + working-directory: + type: string + ndk: + type: string + cmake: + type: string + channel: + type: enum + allowed-values: + - stable + - beta + - dev + - canary + script: + type: string