From a232d4155ddc7bb8cc7fc82a7991d6da90ed05ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 27 Sep 2023 14:42:04 +0200 Subject: [PATCH] Revert "Allow misspell on selfhosted runners" This reverts commit fa3ba3b10016ae75c74bb285138ecbb3e2ae7d18. This is using composite actions which doesn't mount ca-certificates --- internal/ghworkflow/workflow_checks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ghworkflow/workflow_checks.go b/internal/ghworkflow/workflow_checks.go index 5e307e2..cf646c1 100644 --- a/internal/ghworkflow/workflow_checks.go +++ b/internal/ghworkflow/workflow_checks.go @@ -43,7 +43,7 @@ func checksWorkflow(cfg *core.GithubWorkflowConfiguration, ignoreWords []string) }) } - if cfg.SpellCheck.Enabled { + if cfg.SpellCheck.Enabled && !cfg.IsSelfHostedRunner { with := map[string]any{ "exclude": "./vendor/*", "reporter": "github-check",