diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9dd02e9..8764f8b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,19 +1,20 @@ # SPDX-FileCopyrightText: 2023 Comcast Cable Communications Management, LLC # SPDX-License-Identifier: Apache-2.0 - +--- version: 2 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 522af91..007c3cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,4 +23,5 @@ jobs: uses: xmidt-org/shared-go/.github/workflows/ci.yml@c9c75b3fd850c64594bcdc7181b4f7557675faed # v4.4.0 with: release-type: library + yaml-lint-skip: false secrets: inherit diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..1ca1987 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,40 @@ +# SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +# SPDX-License-Identifier: Apache-2.0 +--- + +extends: default + +ignore: [] + +rules: + braces: + level: warning + max-spaces-inside: 1 + brackets: + level: warning + max-spaces-inside: 1 + colons: + level: warning + max-spaces-after: -1 + commas: + level: warning + comments: disable + comments-indentation: disable + document-start: + present: true + empty-lines: + max: 2 + hyphens: + max-spaces-after: 1 + indentation: + level: error + indent-sequences: consistent + line-length: + level: warning + max: 90 + allow-non-breakable-words: true + allow-non-breakable-inline-mappings: true + truthy: + allowed-values: + - 'true' + - 'false' diff --git a/docker-compose.yml b/docker-compose.yml index cf2bfec..fc25e37 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,20 +1,20 @@ # SPDX-FileCopyrightText: 2023 Comcast Cable Communications Management, LLC # SPDX-License-Identifier: Apache-2.0 ---- -services: - nginx: +--- +services: + nginx: image: nginx - ports: + ports: - "7999:80" - dynamodb: + dynamodb: hostname: dynamodb.local.amazonaws.com image: amazon/dynamodb-local command: -jar DynamoDBLocal.jar -inMemory -sharedDb - ports: + ports: - "7998:8000" - kinesis: + kinesis: hostname: kinesis image: saidsef/aws-kinesis-local - ports: - - "7997:4567" -version: "3.8" \ No newline at end of file + ports: + - "7997:4567" +version: "3.8"