diff --git a/action-types.yml b/action-types.yml index a601603..e69de29 100644 --- a/action-types.yml +++ b/action-types.yml @@ -1,3 +0,0 @@ -inputs: - verbose: - type: boolean diff --git a/action.yaml b/action.yaml index 920569b..bb9ae68 100644 --- a/action.yaml +++ b/action.yaml @@ -1,11 +1,6 @@ name: GitHub Actions Typing description: Bring type-safety to your GitHub actions' API! author: Piotr KrzemiƄski -inputs: - verbose: - description: 'Set to true to display debug information helpful when troubleshooting issues with this action.' - required: false - default: 'false' runs: using: 'docker' image: 'Dockerfile' diff --git a/src/main/kotlin/it/krzeminski/githubactionstyping/ManifestsToReport.kt b/src/main/kotlin/it/krzeminski/githubactionstyping/ManifestsToReport.kt index a65bc30..cff3ac4 100644 --- a/src/main/kotlin/it/krzeminski/githubactionstyping/ManifestsToReport.kt +++ b/src/main/kotlin/it/krzeminski/githubactionstyping/ManifestsToReport.kt @@ -1,6 +1,5 @@ package it.krzeminski.githubactionstyping -import it.krzeminski.githubactionstyping.github.getBooleanInput import it.krzeminski.githubactionstyping.parsing.TypesManifest import it.krzeminski.githubactionstyping.parsing.parseManifest import it.krzeminski.githubactionstyping.parsing.parseTypesManifest @@ -30,23 +29,21 @@ fun manifestsToReport(manifest: String, typesManifest: String): Pair