From afc3d617970f9dc0f0b8b9037b9cc144045e74eb Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Mon, 13 Jul 2026 13:54:32 +0100 Subject: [PATCH] fix: resolve actionlint pre-commit failure Add .github/actionlint.yaml so actionlint picks up the self-hosted runner labels already declared in .github/linters/actionlint.yaml (the super-linter config path actionlint does not read by default). Apply the pre-commit end-of-file/trailing-whitespace auto-fixes. Prompt: for each folder that is a writable (e.g. not archived, not read-only) github repository in funfair-tech thats a sub-folder of this one; switch to and get the latest main from upstream and run pre-commit-check and fix any issues identified until clean and then push to a new branch. --- .github/actionlint.yaml | 6 ++++++ .../BuildBot.CloudFormation.Tests.csproj | 2 +- src/BuildBot.CloudFormation/BuildBot.CloudFormation.csproj | 2 +- src/BuildBot.Discord.Tests/BuildBot.Discord.Tests.csproj | 2 +- src/BuildBot.Discord/BuildBot.Discord.csproj | 2 +- src/BuildBot.GitHub.Tests/BuildBot.GitHub.Tests.csproj | 2 +- src/BuildBot.GitHub/BuildBot.GitHub.csproj | 2 +- src/BuildBot.Health.Tests/BuildBot.Health.Tests.csproj | 2 +- src/BuildBot.Health/BuildBot.Health.csproj | 2 +- src/BuildBot.Json.Tests/BuildBot.Json.Tests.csproj | 2 +- src/BuildBot.Json/BuildBot.Json.csproj | 2 +- .../BuildBot.ServiceModel.Tests.csproj | 2 +- src/BuildBot.ServiceModel/BuildBot.ServiceModel.csproj | 2 +- src/BuildBot.Tests/BuildBot.Tests.csproj | 2 +- .../BuildBot.Watchtower.Tests.csproj | 2 +- src/BuildBot.Watchtower/BuildBot.Watchtower.csproj | 2 +- src/BuildBot/BuildBot.csproj | 2 +- 17 files changed, 22 insertions(+), 16 deletions(-) create mode 100644 .github/actionlint.yaml diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 000000000..4da17f96b --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,6 @@ +--- # actionlint configuration for super-linter +self-hosted-runner: + # Labels of self-hosted runner in array of string + labels: + - build + - deploy diff --git a/src/BuildBot.CloudFormation.Tests/BuildBot.CloudFormation.Tests.csproj b/src/BuildBot.CloudFormation.Tests/BuildBot.CloudFormation.Tests.csproj index 246b50fce..a5d09099c 100644 --- a/src/BuildBot.CloudFormation.Tests/BuildBot.CloudFormation.Tests.csproj +++ b/src/BuildBot.CloudFormation.Tests/BuildBot.CloudFormation.Tests.csproj @@ -69,4 +69,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.CloudFormation/BuildBot.CloudFormation.csproj b/src/BuildBot.CloudFormation/BuildBot.CloudFormation.csproj index 7f122fe6c..49002823d 100644 --- a/src/BuildBot.CloudFormation/BuildBot.CloudFormation.csproj +++ b/src/BuildBot.CloudFormation/BuildBot.CloudFormation.csproj @@ -63,4 +63,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Discord.Tests/BuildBot.Discord.Tests.csproj b/src/BuildBot.Discord.Tests/BuildBot.Discord.Tests.csproj index 0c7d63ca7..3cfc669d1 100644 --- a/src/BuildBot.Discord.Tests/BuildBot.Discord.Tests.csproj +++ b/src/BuildBot.Discord.Tests/BuildBot.Discord.Tests.csproj @@ -70,4 +70,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Discord/BuildBot.Discord.csproj b/src/BuildBot.Discord/BuildBot.Discord.csproj index 6e1de6710..386b831aa 100644 --- a/src/BuildBot.Discord/BuildBot.Discord.csproj +++ b/src/BuildBot.Discord/BuildBot.Discord.csproj @@ -72,4 +72,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.GitHub.Tests/BuildBot.GitHub.Tests.csproj b/src/BuildBot.GitHub.Tests/BuildBot.GitHub.Tests.csproj index 731deebce..d9a4d7cef 100644 --- a/src/BuildBot.GitHub.Tests/BuildBot.GitHub.Tests.csproj +++ b/src/BuildBot.GitHub.Tests/BuildBot.GitHub.Tests.csproj @@ -70,4 +70,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.GitHub/BuildBot.GitHub.csproj b/src/BuildBot.GitHub/BuildBot.GitHub.csproj index 287f4eff0..7f8204383 100644 --- a/src/BuildBot.GitHub/BuildBot.GitHub.csproj +++ b/src/BuildBot.GitHub/BuildBot.GitHub.csproj @@ -59,4 +59,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Health.Tests/BuildBot.Health.Tests.csproj b/src/BuildBot.Health.Tests/BuildBot.Health.Tests.csproj index 392f277c9..fbefc97a0 100644 --- a/src/BuildBot.Health.Tests/BuildBot.Health.Tests.csproj +++ b/src/BuildBot.Health.Tests/BuildBot.Health.Tests.csproj @@ -69,4 +69,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Health/BuildBot.Health.csproj b/src/BuildBot.Health/BuildBot.Health.csproj index 6a4a9914a..5576e3fde 100644 --- a/src/BuildBot.Health/BuildBot.Health.csproj +++ b/src/BuildBot.Health/BuildBot.Health.csproj @@ -62,4 +62,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Json.Tests/BuildBot.Json.Tests.csproj b/src/BuildBot.Json.Tests/BuildBot.Json.Tests.csproj index f1f38cb67..609ee28e5 100644 --- a/src/BuildBot.Json.Tests/BuildBot.Json.Tests.csproj +++ b/src/BuildBot.Json.Tests/BuildBot.Json.Tests.csproj @@ -69,4 +69,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Json/BuildBot.Json.csproj b/src/BuildBot.Json/BuildBot.Json.csproj index 4a3c1f4c0..5c82bc4b8 100644 --- a/src/BuildBot.Json/BuildBot.Json.csproj +++ b/src/BuildBot.Json/BuildBot.Json.csproj @@ -59,4 +59,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.ServiceModel.Tests/BuildBot.ServiceModel.Tests.csproj b/src/BuildBot.ServiceModel.Tests/BuildBot.ServiceModel.Tests.csproj index 2070822ec..e4a99f5e9 100644 --- a/src/BuildBot.ServiceModel.Tests/BuildBot.ServiceModel.Tests.csproj +++ b/src/BuildBot.ServiceModel.Tests/BuildBot.ServiceModel.Tests.csproj @@ -69,4 +69,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.ServiceModel/BuildBot.ServiceModel.csproj b/src/BuildBot.ServiceModel/BuildBot.ServiceModel.csproj index d54646e43..59bea0bfb 100644 --- a/src/BuildBot.ServiceModel/BuildBot.ServiceModel.csproj +++ b/src/BuildBot.ServiceModel/BuildBot.ServiceModel.csproj @@ -60,4 +60,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Tests/BuildBot.Tests.csproj b/src/BuildBot.Tests/BuildBot.Tests.csproj index 70168fe95..0c834c694 100644 --- a/src/BuildBot.Tests/BuildBot.Tests.csproj +++ b/src/BuildBot.Tests/BuildBot.Tests.csproj @@ -70,4 +70,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Watchtower.Tests/BuildBot.Watchtower.Tests.csproj b/src/BuildBot.Watchtower.Tests/BuildBot.Watchtower.Tests.csproj index 365e28b66..3d9a69c97 100644 --- a/src/BuildBot.Watchtower.Tests/BuildBot.Watchtower.Tests.csproj +++ b/src/BuildBot.Watchtower.Tests/BuildBot.Watchtower.Tests.csproj @@ -69,4 +69,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot.Watchtower/BuildBot.Watchtower.csproj b/src/BuildBot.Watchtower/BuildBot.Watchtower.csproj index 287f4eff0..7f8204383 100644 --- a/src/BuildBot.Watchtower/BuildBot.Watchtower.csproj +++ b/src/BuildBot.Watchtower/BuildBot.Watchtower.csproj @@ -59,4 +59,4 @@ - \ No newline at end of file + diff --git a/src/BuildBot/BuildBot.csproj b/src/BuildBot/BuildBot.csproj index 265cb9d72..e4c3e6131 100644 --- a/src/BuildBot/BuildBot.csproj +++ b/src/BuildBot/BuildBot.csproj @@ -131,4 +131,4 @@ - \ No newline at end of file +