From 4ebaa48f93e77c0949c038b59eae5dbab9c0dd7e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sun, 8 Mar 2026 15:32:27 -0500 Subject: [PATCH] yaml formatting --- .github/dependabot.yml | 8 ++++---- .github/labeler.yml | 18 +++++++++--------- .github/release.yml | 2 +- .github/workflows/label-pr.yaml | 2 +- .github/workflows/release-showbridge.yaml | 2 +- .github/workflows/test-showbridge.yaml | 18 +++++++++--------- cmd/showbridge/.goreleaser.yaml | 2 +- 7 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6d0f385..2eb8f4c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,10 @@ version: 2 updates: - - package-ecosystem: 'github-actions' - directory: '/' + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: 'weekly' + interval: "weekly" - package-ecosystem: gomod directory: / schedule: - interval: "weekly" \ No newline at end of file + interval: "weekly" diff --git a/.github/labeler.yml b/.github/labeler.yml index f8e0cb7..becf8db 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,27 +1,27 @@ config: - changed-files: - - any-glob-to-any-file: 'internal/config/**' + - any-glob-to-any-file: "internal/config/**" framer: - changed-files: - - any-glob-to-any-file: 'internal/framer/**' + - any-glob-to-any-file: "internal/framer/**" module: - changed-files: - - any-glob-to-any-file: 'internal/module/**' + - any-glob-to-any-file: "internal/module/**" processor: - changed-files: - - any-glob-to-any-file: 'internal/processor/**' + - any-glob-to-any-file: "internal/processor/**" router: - changed-files: - - any-glob-to-any-file: 'router*' - + - any-glob-to-any-file: "router*" + route: - changed-files: - - any-glob-to-any-file: 'internal/route/**' - + - any-glob-to-any-file: "internal/route/**" + cli: - changed-files: - - any-glob-to-any-file: 'cmd/showbridge/**' + - any-glob-to-any-file: "cmd/showbridge/**" diff --git a/.github/release.yml b/.github/release.yml index bbec69a..52b2e1b 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -26,4 +26,4 @@ changelog: - cli - title: Other Changes labels: - - '*' \ No newline at end of file + - "*" diff --git a/.github/workflows/label-pr.yaml b/.github/workflows/label-pr.yaml index bd10f1e..2d142e3 100644 --- a/.github/workflows/label-pr.yaml +++ b/.github/workflows/label-pr.yaml @@ -15,4 +15,4 @@ jobs: steps: - uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1 with: - sync-labels: true \ No newline at end of file + sync-labels: true diff --git a/.github/workflows/release-showbridge.yaml b/.github/workflows/release-showbridge.yaml index 9c9ccb7..b46544e 100644 --- a/.github/workflows/release-showbridge.yaml +++ b/.github/workflows/release-showbridge.yaml @@ -19,7 +19,7 @@ jobs: - name: setup go uses: actions/setup-go@v6 with: - go-version-file: 'go.mod' + go-version-file: "go.mod" - name: release uses: goreleaser/goreleaser-action@v7 with: diff --git a/.github/workflows/test-showbridge.yaml b/.github/workflows/test-showbridge.yaml index aab7c57..7f9b91c 100644 --- a/.github/workflows/test-showbridge.yaml +++ b/.github/workflows/test-showbridge.yaml @@ -5,16 +5,16 @@ on: branches: - main paths: - - '**/*.go' - - 'go.mod' - - 'go.sum' + - "**/*.go" + - "go.mod" + - "go.sum" push: branches: - main paths: - - '**/*.go' - - 'go.mod' - - 'go.sum' + - "**/*.go" + - "go.mod" + - "go.sum" permissions: contents: write @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: - go-version-file: 'go.mod' + go-version-file: "go.mod" - name: mod tidy run: go mod tidy @@ -37,7 +37,7 @@ jobs: run: go test ./... -count=1 -coverpkg "github.com/jwetzell/showbridge-go/..." -coverprofile coverage.out - name: clean up coverage report - run: cat coverage.out | grep -v "github.com/jwetzell/showbridge-go/cmd" > coverage.nocmd.out + run: cat coverage.out | grep -v "github.com/jwetzell/showbridge-go/cmd" > coverage.nocmd.out - name: Update coverage report uses: ncruces/go-coverage-report@v0.3.2 with: @@ -45,5 +45,5 @@ jobs: report: true chart: true amend: true - if: github.event_name == 'push' + if: github.event_name == 'push' continue-on-error: true diff --git a/cmd/showbridge/.goreleaser.yaml b/cmd/showbridge/.goreleaser.yaml index 4c93a5c..f6988ef 100644 --- a/cmd/showbridge/.goreleaser.yaml +++ b/cmd/showbridge/.goreleaser.yaml @@ -15,7 +15,7 @@ builds: - "amd64" - "arm64" ldflags: - - '-s -w -X main.version={{.RawVersion}}-{{.ShortCommit}}' + - "-s -w -X main.version={{.RawVersion}}-{{.ShortCommit}}" archives: - formats: [tar.gz]