From 9c376576f28916eec4c65d595adb99ccc01b4107 Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 28 May 2024 20:04:16 -0700 Subject: [PATCH 1/2] chore:Enable yaml linting. --- .github/dependabot.yml | 6 ++++-- .github/workflows/ci.yml | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2fb3c9e..8764f8b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,13 +7,14 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - # Check for updates to GitHub Actions every week + # Check for updates to GitHub Actions every day interval: "daily" labels: - "dependencies" commit-message: prefix: "chore" include: "scope" + open-pull-requests-limit: 10 - package-ecosystem: gomod directory: / @@ -22,5 +23,6 @@ updates: labels: - "dependencies" commit-message: - prefix: "feat" + prefix: "chore" include: "scope" + open-pull-requests-limit: 10 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f164f6..3401ec0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,4 +24,5 @@ jobs: with: go-generate-deps: golang.org/x/tools/cmd/stringer@latest release-type: library + yaml-lint-skip: false secrets: inherit From e0ed3ca843f78ead17cd23acf56c10ec45056574 Mon Sep 17 00:00:00 2001 From: schmidtw Date: Tue, 28 May 2024 20:18:40 -0700 Subject: [PATCH 2/2] chore:Disable truthy filter. --- .yamllint.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.yamllint.yml b/.yamllint.yml index 1ca1987..c2053c9 100644 --- a/.yamllint.yml +++ b/.yamllint.yml @@ -34,7 +34,4 @@ rules: max: 90 allow-non-breakable-words: true allow-non-breakable-inline-mappings: true - truthy: - allowed-values: - - 'true' - - 'false' + truthy: disable