diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8c8e7b4..6a37728 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -4,7 +4,7 @@ on: push: branches: - "!dependabot/*" - - "main" + - "master" pull_request: branches: [ "*" ] jobs: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 6d299fa..5339538 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -4,7 +4,7 @@ on: push: branches: - "!dependabot/*" - - "main" + - "master" pull_request: branches: [ "*" ] jobs: @@ -48,23 +48,9 @@ jobs: - uses: "golangci/golangci-lint-action@v3" with: version: "v1.43" - skip-go-installation: true skip-pkg-cache: true skip-build-cache: false - extra-lint: - name: "Lint YAML & Markdown" - runs-on: "ubuntu-latest" - steps: - - uses: "actions/checkout@v3" - - uses: "bewuethr/yamllint-action@v1.1.1" - with: - config-file: ".yamllint" - - uses: "nosborn/github-action-markdown-cli@v3.0.1" - with: - files: "." - config_file: ".markdownlint.yaml" - codeql: name: "Analyze with CodeQL" runs-on: "ubuntu-latest"