diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1800133b..944d4a3e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,8 +3,10 @@ name: Go on: push: branches: [ main ] + paths-ignore: [ '**.md', '**/docs/**' ] pull_request: branches: [ main ] + paths-ignore: [ '**.md', '**/docs/**' ] jobs: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 7fe8fdfe..7fef672b 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -3,8 +3,10 @@ name: Lint on: push: branches: [ main ] + paths-ignore: [ '**.md', '**/docs/**' ] pull_request: branches: [ main ] + paths-ignore: [ '**.md', '**/docs/**' ] env: GO_VERSION: 1.19