From afe3d0f43e18a032bd70414f71289906e96490aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Kautler?= Date: Mon, 23 Jan 2023 16:46:52 +0100 Subject: [PATCH] Add action typing (#58) --- .github/workflows/check-action-typing.yml | 16 +++++++ action-types.yml | 51 +++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 .github/workflows/check-action-typing.yml create mode 100644 action-types.yml diff --git a/.github/workflows/check-action-typing.yml b/.github/workflows/check-action-typing.yml new file mode 100644 index 0000000..ef7d13f --- /dev/null +++ b/.github/workflows/check-action-typing.yml @@ -0,0 +1,16 @@ +name: Check Action Typing + +on: + push: + pull_request: + +jobs: + check_action_typing: + name: Check Action Typing + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Check Action Typing + uses: krzema12/github-actions-typing@v0 diff --git a/action-types.yml b/action-types.yml new file mode 100644 index 0000000..b235a5e --- /dev/null +++ b/action-types.yml @@ -0,0 +1,51 @@ +# See https://github.com/krzema12/github-actions-typing +outputs: + build-scan-url: + type: string +inputs: + job-id: + type: string + build-root-directory: + type: string + home-directory: + type: string + gradle-version: + type: string + read-only: + type: boolean + save-generated-gradle-jars: + type: boolean + save-local-build-cache: + type: boolean + multi-cache-enabled: + type: boolean + multi-cache-version: + type: string + multi-cache-repository: + type: string + multi-cache-group-id-filter: + type: string + save-gradle-dependencies-cache: + type: boolean + execution-only-caches: + type: boolean + remote-build-cache-proxy-enabled: + type: boolean + gradle-dependencies-cache-key: + type: string + save-maven-dependencies-cache: + type: boolean + maven-local-ignore-paths: + type: string + debug: + type: boolean + concurrent: + type: boolean + arguments: + type: string + properties: + type: string + gradle-build-scan-report: + type: boolean + gradle-distribution-sha-256-sum-warning: + type: boolean